有几种方法可以做到这一点。除非你只会有几个“section1”类型的帖子,否则我建议不要把它们全部列出。
选项:
使用WP\\u Query()选项:
<?php $posts = new WP_Query( array( \'post_type\' => \'section1\', \'posts_per_page\' => -1 ) ); ?>
<ul>
<?php while( $posts->have_posts() ) : $posts->the_post(); ?>
<li><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></li>
<?php endwhile; ?>
</ul>
<?php wp_reset_postdata(); ?>
希望有帮助!
如果您希望从特定类别的帖子中动态创建导航菜单,比如让slug“特色化”,然后将“post\\u type=”“>“section1”替换为“category\\u name=”“>“特色化”