0
function Service_shortcode($atts , $content = null){
extract(shortcode_atts(array(
'title'=>'',
),$atts
));
$q = new WP_Query(
array('posts_per_page'=>3, 'post_type'=>'services')
);
$list = '
<h1>'.$title.'</h1>
<ul>
';
while ($q->have_posts()) : $q->the_post();
$list.='
<li>
<h3>'.get_the_title().'</h3>
<h6>'.the_category(',').'</h6>
<p>'.get_the_content().'</p>
</li>
';
endwhile;
$list.='</ul>';
wp_reset_query();
return $list;
}
add_shortcode('service','Service_shortcode');
當使用它主題時,它顯示類別名稱,但在短代碼中使用它時不起作用。哪些代碼用於通過簡碼顯示類別名稱。如何通過簡碼顯示wordpress類別名稱?