<li <?php echo get_category_link(6); ?> id="content_menu_all">Показать весь каталог</li>
- не в те теги get_category_link вставили, пропустили теги «a»В файле functions я написала
function get_categories(){
...
}
function Hi() {
echo "Привет Мир";
}
function Hi() {
echo "Привет Fatal error: Cannot redeclare Hi()";
}
Hi();
Но что-то криво все конечно..
function mechanicum_dynamic_css_background_position( $position ) {
if ( ! $position ) {
return false;
}
$format = 'background-position: %s';
$result = sprintf( $format, str_replace( '-', ' ', $position ) );
return $result;
}
$format = 'background-position: %s';
$position = 'right bottom';
, то на выходе получится background-position: right bottom
,background-position: right bottom;
$position = false;
echo mechanicum_dynamic_css_background_position( $position );
Может есть способ сделать адаптивный div с максимальной шириной и впихнуть туда видео фоном?
Вы указали относительные пути
...
/**
* Enqueue scripts and styles.
*
* @since Twenty Twenty-One 1.0
*
* @return void
*/
function twenty_twenty_one_scripts() {
// Note, the is_IE global variable is defined by WordPress and is used
// to detect if the current browser is internet explorer.
global $is_IE, $wp_scripts;
if ( $is_IE ) {
// If IE 11 or below, use a flattened stylesheet with static values replacing CSS Variables.
wp_enqueue_style( 'twenty-twenty-one-style', get_template_directory_uri() . '/assets/css/ie.css', array(), wp_get_theme()->get( 'Version' ) );
} else {
// If not IE, use the standard stylesheet.
wp_enqueue_style( 'twenty-twenty-one-style', get_template_directory_uri() . '/style.css', array(), wp_get_theme()->get( 'Version' ) );
}
// RTL styles.
wp_style_add_data( 'twenty-twenty-one-style', 'rtl', 'replace' );
// Print styles.
wp_enqueue_style( 'twenty-twenty-one-print-style', get_template_directory_uri() . '/assets/css/print.css', array(), wp_get_theme()->get( 'Version' ), 'print' );
// Threaded comment reply styles.
if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) {
wp_enqueue_script( 'comment-reply' );
}
// Register the IE11 polyfill file.
wp_register_script(
'twenty-twenty-one-ie11-polyfills-asset',
get_template_directory_uri() . '/assets/js/polyfills.js',
array(),
wp_get_theme()->get( 'Version' ),
true
);
// Register the IE11 polyfill loader.
wp_register_script(
'twenty-twenty-one-ie11-polyfills',
null,
array(),
wp_get_theme()->get( 'Version' ),
true
);
wp_add_inline_script(
'twenty-twenty-one-ie11-polyfills',
wp_get_script_polyfill(
$wp_scripts,
array(
'Element.prototype.matches && Element.prototype.closest && window.NodeList && NodeList.prototype.forEach' => 'twenty-twenty-one-ie11-polyfills-asset',
)
)
);
// Main navigation scripts.
if ( has_nav_menu( 'primary' ) ) {
wp_enqueue_script(
'twenty-twenty-one-primary-navigation-script',
get_template_directory_uri() . '/assets/js/primary-navigation.js',
array( 'twenty-twenty-one-ie11-polyfills' ),
wp_get_theme()->get( 'Version' ),
true
);
}
// Responsive embeds script.
wp_enqueue_script(
'twenty-twenty-one-responsive-embeds-script',
get_template_directory_uri() . '/assets/js/responsive-embeds.js',
array( 'twenty-twenty-one-ie11-polyfills' ),
wp_get_theme()->get( 'Version' ),
true
);
}
add_action( 'wp_enqueue_scripts', 'twenty_twenty_one_scripts' );
...
...
p,li{cursor:url('images/text.cur'),text;}
...
<img src="<?php echo esc_url( get_template_directory_uri() ); ?>/screenshot.png">
Вы предлагаете для каждой книги делать отдельную запись? Не думаю, что это оптимальный вариант.
<a class="doc-link" href="<?php echo esc_url(get_template_directory_uri()); ?>/doc/doc.pdf" target="_blank">
<p class="docs">doc.pdf</p>
</a>
<a class="doc-link" href="<?php echo esc_attr(get_template_directory_uri()); ?>/doc/doc.pdf" target="_blank">
<p class="docs">doc.pdf</p>
</a>
Можно ли считать данный хардкор с удалением решением проблемы?
<ol class="comment-list">
<!-- нету ничего -->
</ol><!-- .comment-list -->
$warp = Warp::getInstance();
Я бы кастомизировал стандартные комментарии
можете сказать, почему лучше делать через стандартные комментарии, а не через новый тип записи?