我已经为我目前在wordpress中工作的网站的几个子部分设置了自定义帖子类型。我需要将自定义帖子类型提供给模板(我已经工作)但我有一些问题和非工作的东西。阅读更多链接无法正常工作,甚至根本没有显示?此外,当我点击帖子的标题链接转到完整帖子时,他们会转到正确的网址,但正文中没有内容。我想我需要在自定义模板中添加更多内容。
以下是模板代码:
<?php
/* Template Name:News */
?>
<?php get_header(); ?>
<div class="decade1">
<ul id="news_list">
<?php global $post; query_posts( 'post_type=news&orderby=ID&order=desc' ); while (have_posts()) : the_post(); ?>
<li>
<div class="fea_del">
<h2><?php the_title(); ?></h2>
<p><?php the_field('post_content',$post->ID); ?></p>
<a <?php $p=get_permalink( $post->ID ); ?> href="<?php echo $p; ?>" class="entire_job">Read More</a>
</div>
</li>
<?php endwhile; wp_reset_query(); ?>
</ul>
</div>
<?php get_footer(); ?>
最重要的问题是帖子没有显示在各自的页面上。谢谢!