<?php if( is_home() ) : ?>
Для главной
<?php else : ?>
Для остальных
<?php endif; ?>
<?php if( is_front_page() ) : ?>
Для главной
<?php else : ?>
Для остальных
<?php endif; ?>
$args = array(
'child_of' => 7,
'hide_empty' => false
);
<?php
$terms = get_terms( array(
'taxonomy' => 'category',
'parent' => '10'
) );
if ( !empty( $terms ) && !is_wp_error( $terms ) ){
echo '<ul>';
foreach ( $terms as $term ) {
echo '<li>' . $term->name . ' (' . $term->count . ')' . '</li>';
}
echo '</ul>';
}
?>
add_filter('post_gallery', 'my_post_gallery', 10, 3);
<div class="miniIcon miniProfi"></div>
реализовать с помощью css-селектора miniProfi:before
. function denisco_scripts() {
$tpl = plugin_dir_url(__FILE__);
wp_enqueue_style('denisco', $tpl . '/style.css');
wp_enqueue_script('denisco', $tpl . '/scripts.js', array('jquery'), null, true);
}
add_action('wp_enqueue_scripts', 'denisco_scripts');
<?php
function denisco_footer() { ?>
<script>alert('hello');</script>
<?php }
add_action( 'wp_footer', 'denisco_footer' );
?>
<?php
function denisco_head() { ?>
<script>alert('hello');</script>
<?php }
add_action( 'wp_head', 'denisco_head' );
?>
<?php
echo wp_trim_words( get_the_content(), 40, '...' );
?>
Как отсортировать список постов
Will only output the date if the current post’s date is different from the previous one output.
i.e. Only one date listing will show per day worth of posts shown in the loop, even if the function is called several times for each post.
<meta property="og:title" content="Заголовок для отображения в сниппете">
<meta property="og:image" content="ссылка на картинку">
<meta property="og:description" content="Описание для сниппета, текст под названием страницы">