好吧,我已经尝试了很多简码片段来在我的帖子(不是页面)中显示 3 个最近的帖子作为简码。
喜欢:
function posts_shortcode() {
$the_query = new WP_Query(array('posts_per_page' => 3));
// The Loop
while ( $the_query->have_posts() ) : $the_query->the_post();
echo '<li>';
the_title();
echo '</li>';
endwhile;
// Reset Post Data
wp_reset_postdata();
}
add_shortcode('posts', 'posts_shortcode');
和
function posts_shortcode() { // From Smashingmagazine
query_posts(array('orderby' => 'date', 'order' => 'DESC' , 'showposts' => 3));
if (have_posts()) :
while (have_posts()) : the_post();
$return_string = '<a href="'.get_permalink().'">'.get_the_title().'</a>';
endwhile;
endif;
wp_reset_query();
return $return_string;
}
function register_shortcodes(){
add_shortcode('posts', 'posts_shortcode');
}
乃至
function wptuts_recentpost($atts, $content=null){ // From WP Tuts+
$getpost = get_posts( array('number' => 1) );
$getpost = $getpost[0];
$return = $getpost->post_title . "<br />" . $getpost->post_excerpt . "…";
$return .= "<br /><a href='" . get_permalink($getpost->ID) . "'><em>read more →</em></a>";
return $return;
}
add_shortcode('newestpost', 'wptuts_recentpost');
所有这些似乎都不起作用。我怀疑它与循环或其他东西有关。如果我删除循环并且只做类似的事情
return 'hey there';
在函数()中,那么它工作得很好。
有任何想法吗?
编辑: 使用以下简码:
function posts_shortcode() { // From Smashingmagazine
query_posts($args);
if (have_posts()) :
while (have_posts()) : the_post();
$return_string = '<a href="'.get_permalink().'">'.get_the_title().'</a>';
endwhile;
endif;
wp_reset_query();
return $return_string;
}
add_shortcode('posts', 'posts_shortcode');
我设法得到了一些结果,但它现在显示带有指向我的首页的链接的文本主页。首先,我不明白为什么......其次,当我用'posts_per_page = 5'替换$args时,它又消失了。我真的认为由于某种原因循环有问题..