在functions.php中使用模板标签时,wordpress会忽略格式化

时间:2014-07-11 20:22:43

标签: php wordpress function

我使用以下代码创建一个用于WYSIWYG的短代码。

function consultants( $atts, $content = null ) {

$output = '';
$consultant_query = new WP_Query('post_type=consultants&showposts=10');
if ($consultant_query->have_posts()) :
$output .= '<div class="col-md-12">';
while ($consultant_query->have_posts()) : $consultant_query->the_post();

$output .= '<div class="col-xs-12 col-sm-5 col-md-4 kam-tile-own-bg"><h1>' .the_title().      '</h1> ';

 if(has_post_thumbnail())
{

$output .= get_the_post_thumbnail($post->ID,'wpbs-featured-avatar');
} else {
$output .= '
<img class="kam-avatar" width="62" height="62"   src="'.get_template_directory_uri().'/images/avatar@2x.jpg" class="attachment-featured_image  wp-post-image" alt="" />'; }
 $output .= '</div>';

endwhile;
$output .= '</div>';
endif;
wp_reset_postdata(); 

return $output;

}

代码工作正常 - 但是它在.the_title().上失败,它会在页面顶部抛出它不尊重标签或其包含的标签。

非常感谢

1 个答案:

答案 0 :(得分:2)

而不是the_title();使用get_the_title();