老实说,我并没有使用wp nav菜单,而只是将其用于菜单。我在想,在你的情况下,为“项目”创建一个自定义的帖子类型,然后列出它们(而不是使用wp菜单作为项目排序器)可能更具语义。您可以使用插件“Post Types Order”以您想要的方式对您的自定义帖子进行排序(与通过拖放排列菜单的顺序相同)。
使用自定义帖子类型的好处是,可以更灵活地按照您的意愿使用它们。因此,简而言之:
为“项目”创建自定义帖子类型安装帖子类型排序要排序项目,请在要列出项目的页面(或侧栏)上使用下面的代码,添加以下代码段
$example = new WP_Query( \'post_type\' => \'projects\',\'showposts\' => \'20\' );
// gives the title for each project
if ( $example->have_posts() ) :
while ( $example->have_posts() ) :
the_post();
?>
<div class="project" >
<!-- thumbnail -->
<span class="project-thumb">
<?php the_post_thumbnail(); ?>
</span>
<!-- end thumbnail -->
<h4><?php the_title(); ?></h4><!--title -->
</div><!--#project -->
<?php
endwhile;
endif;