我已经制作了一个列出一堆帖子的wp菜单。 我可以列出这些帖子的标题,但不能列出其内容。
wp_nav_menu(array('menu'=>'Compatibility Matrix'));
如何显示每个项目的内容(帖子标题)?
答案 0 :(得分:0)
您无法使用wp_nav_menu函数列出帖子的内容,该函数仅用于创建包含您分配菜单项的帖子/页面标题或自定义标题的导航菜单。
您需要使用循环来显示内容。这是一个非常基本的循环:
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<?php the_content(); ?>
<?php endwhile; ?>
<?php endif; ?>
您可以根据自己的需要进行修改。以下是一些可以帮助您的资源:
http://codex.wordpress.org/The_Loop
http://wp.tutsplus.com/tutorials/theme-development/a-beginners-guide-to-the-wordpress-loop/