我使用此代码创建了一个自定义帖子,也是一个阅读更多按钮。这篇文章在欢迎模板上成功展示。但当我点击阅读更多按钮,然后显示没有找到!!有人可以帮我解决这个问题吗?
感谢。
答案 0 :(得分:0)
Try this:
<div class="right_pnl_data">
<h1>Regional Race Calendar</h1>
<?php
$args = array( 'numberposts' => 3, 'order'=> 'DESC', 'orderby' => 'post_date', 'category' => 4 );
$postslist = get_posts( $args );
foreach ($postslist as $post) : setup_postdata($post);
$a= get_the_date();
?>
<strong><a style="text-decoration:none;" href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title() ?></a></strong><br />
<?php endforeach; ?>
</div>
答案 1 :(得分:0)
请使用以下代码:
<?php the_excerpt(); ?>
感谢。