我想在單一發布模式下返回2個最新帖子,但排除當前帖子。我做到了。問題是,它剛剛停止工作。它沒有改變代碼,它停止在服務器以及我的本地主機上。wp_get_recent_posts停止工作
下面的代碼:
<section id='recent_posts'>
<header class='recent_header'>
Recent posts
</header>
<?php
$id = $post->ID;
$recent_posts = wp_get_recent_posts("numberposts=2&exclude=$id");
foreach($recent_posts as $recent) { ?>
<article class='single_recent'>
<header>
<a href="<?php echo get_permalink($recent["ID"]); ?>"><?php echo $recent["post_title"]; ?></a>
</header>
<p>
<?php echo get_excerpt_by_id($recent["ID"]); ?>
</p>
</article>
<?php } ?>
</section>
沒有人有一個解釋?
我嘗試刪除參數,仍然沒有。它返回一個空數組。
任何建議我應該使用哪些其他函數來實現相同的效果?
編輯:
<?php
get_header();
get_sidebar();
?>
<?php the_post() ?>
<article class='post-single'>
<header class='post_header'>
<h1><?php the_title(); ?></h1>
<div class='post_header_bottom'>
<strong class='post_category'><?php echo get_the_category_list(', '); ?></strong>
<strong class='post_author'><span class='symbol'>U</span> by <?php the_author(); ?></strong>
</div>
</header>
<?php if (has_post_thumbnail()) : ?>
<figure class='post_single_image'>
<?php the_post_thumbnail(); ?>
<figcaption>No Will No Skill</figcaption>
</figure>
<?php endif; ?>
<div class='post_perex'>
<?php the_content(); ?>
</div>
<footer class='post_footer'>
<div class='post_footer_top'>
<div class='post_tags'>
<?php the_tags('', '', ''); ?>
</div>
<div class='post_time'>
<time datetime='<?php the_time('Y-m-d'); ?>' pubdate>
<span class='symbol'>P </span>
<?php relative_post_the_date(); ?>
</time>
</div>
</div>
<div class='post_share'>
<div class='share_show'>
<span class='symbol'>f</span> Like
|
<span class='symbol'>g</span> +1
|
<span class='symbol'>t</span> Tweet
<?php
if(function_exists('display_social4i'))
echo display_social4i("large","align-left");
?>
</div>
</div>
</footer>
</article>
<?php comments_template(); ?>
<section id='recent_posts'>
<header class='recent_header'>
Recent posts
</header>
<?php
global $post;
$id = $post->ID;
$qargs = array(
'post__not_in'=> array($id),
'posts_per_page' => 2
);
$recent_posts = new WP_Query($qargs);
if ($recent_posts->have_posts()) echo 'yes'; else echo 'nope';
if($recent_posts->have_posts()) : while($recent_posts->have_posts()) : $recent_posts->the_post(); ?>
<article class='single_recent'>
<header>
<a href="<?php the_permalink(); ?>"><?php the_title(); ?></a>
</header>
<p>
<?php the_excerpt(); ?>
</p>
</article>
<?php endwhile;endif; ?>
</section>
<div class='space'></div>
</div>
<?php
get_footer();
?>
爲什麼我會在單個帖子視圖中使用循環? 順便提一下,帖子ID不是問題。它得到的ID很好。問題是該函數返回零個帖子(即使沒有參數) – 2012-07-30 10:13:19
你是正確的,該函數應該仍然返回一個結果數組,無論ID如何。我很抱歉。出於好奇,我們是在處理標準職位?或者你是否試圖查詢自定義帖子?因爲如果您想要查詢最近的自定義帖子或頁面,則需要設置'post_type'參數。 – maiorano84 2012-07-30 16:58:51
是的,我想返回標準帖子。我試過你的代碼,它仍然沒有返回。我將嘗試編輯帖子並將其中的整個single.php代碼粘貼。 – 2012-07-30 23:22:12