我试图动态创建自定义分类术语的短代码。但没有这样做。 假设,如果有一个名为“wordpress”的术语,那么我应该能够通过短代码查询与该术语相关的所有帖子。 更确切地说,假设有一个名为“事件”的分类法,并且在该分类法下有多个术语。所以,我试图通过每个术语的短代码来查询每个术语下的帖子。
以下是我的尝试:
function wordpress_recent_post( $atts, $content ) {
$a = shortcode_atts( array(
'cat' => '',
), $atts );
$args = array(
'posts_per_page' => 1,
'offset' => 0,
'category_name' => $a['cat'],
'orderby' => 'post_date',
'order' => 'DESC',
'post_type' => 'post',
'post_status' => 'publish',
'ignore_sticky_posts' => true,
);
$recent_posts = new WP_Query( $args );
ob_start();
if ( ! $recent_posts-> have_posts() ) {
return 'No Posts Found for ' . $a['cat'];
}
while ( $recent_posts->have_posts() ) {
$recent_posts->the_post();
the_title( '<h2>', '</h2>' );
if ( '' != $a['cat'] ) {
$href = '/category/' . $a['cat'];
} else {
$href = '/blog';
}
echo "<p><a href='$href'>Read More" . ucwords( $a['cat'] ) . '</a></p>';
}
wp_reset_query();
return ob_get_clean();
}
add_shortcode( 'wordpress_recent_post', array($this, 'wordpress_recent_post') );
然后我用这个来称呼一个名为“feature”的词,其id为'183'(假设) [wordpress_recent_post cat =“183”]
任何帮助都会非常明显。
谢谢!
答案 0 :(得分:1)
添加term slug就可以了。应该有slug not id,像这样: [wordpress_recent_post cat =“features”]