Сообщество IT-специалистов
Ответы на любые вопросы об IT
Профессиональное развитие в IT
function shorcode_title( $atts ){ return '<p><?php the_title(); ?></p>'; } add_shortcode( 'title', 'shorcode_title' );
function shorcode_title( $atts ){ ob_start(); the_title(); return '<p>'.ob_get_clean().'</p>'; } add_shortcode( 'title', 'shorcode_title' );