get_template_part( 'content', get_post_format() );
get_template_part( 'content', 'daughter' );
<?php
$args = array(
'order' => 'DESC',
'orderby' => 'rand',
'comment_count' => array(
'value' => 0,
'compare' => '='
)
);
query_posts( $args );
add_shortcode( 'name', 'func' );
function func( $atts ){
$params = shortcode_atts( array(
'param1' => null,
'param2' => null
), $atts );
return 1;
}
// передаем параметры
[name param1=1 param2=2]