Jump to content
  • 0

Не отображаются картинки в теме WP


IvanRu08
 Share

Question

Верстаю WP тему. Столкнулся со следующей проблемой. В обычной html верстке прописываю путь картинкам следующим образом:

<img src="images/pic_1.jpg" alt="">

Однако когда переношу все на сервер, картинки не отображаются. Решаю проблему следующим способом:

<img src="<?php echo get_template_directory_uri(); ?>/images/pic_1.jpg" alt="">

Это срабатывает в файлах типа index.php. А что делать с картинками, которые находятся, например, в style.css? Как вообще правильно прописывать путь, чтобы все работало. Заранее спасибо

Link to comment
Share on other sites

5 answers to this question

Recommended Posts

  • 0

style Должен быть подключен через wp_enqueue_style.

А так используются относительные пути. 

.box {
 	background: url('../images/image.jpg') no-repeat scroll 0 0 transparent; 
}

Обращаем внимание на ../

Edited by Q4Dizzy
Link to comment
Share on other sites

  • 0
7 часов назад, Q4Dizzy сказал:

style Должен быть подключен через wp_enqueue_style.

А так используются относительные пути. 


.box {
 	background: url('../images/image.jpg') no-repeat scroll 0 0 transparent; 
}

Обращаем внимание на ../

Регистрирую стили вот так. Что не правильно делаю?

<?php
function true_register_style_frontend() {
     wp_register_style( 'mystyle', get_stylesheet_directory_uri() . '/style.css', array('common', 'layout'), '14989210', 'screen' );
}
 
add_action( 'wp_enqueue_scripts', 'true_register_style_frontend' );
?>

<?php 
function true_register_style_frontend() {
 	wp_register_style( 'mystyle', get_stylesheet_directory_uri() . '/style.css', array('common', 'layout'), '14989210', 'screen' );
}
 
add_action( 'wp_enqueue_scripts', 'true_register_style_frontend' );
?>

 

Link to comment
Share on other sites

  • 0

Функция wp_register_style только регистрирует файл, чтобы он был подключен и выведен, его нужно добавить в очередь с помощью wp_enqueue_style(). Файл будет добавлен в <head> часть документа.

 

Используйте wp_enqueue_style().

Цитата

Правильно добавляет файл CSS стилей. Регистрирует файл стилей, если он еще не был зарегистрирован.

Если файл стилей был предварительно зарегистрирован через wp_register_style(), то его можно добавить в очередь, указав название (идентификатор) в первом параметре $handle.

Если файл не был предварительно зарегистрирован, то эта функция зарегистрирует файл и добавит его в очередь.

Добавленный в очередь файл стилей выводится в <head> части документа.

 

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy