Para adicionar ordenadamente y/o excluir páginas en el menú a partir de las páginas creadas
// add a heading to the page link list
wp_list_pages
(
'title_li=<h2>Pages</h2><p>'
);</p>
<p>
// sort list by the menu order<br>
wp_list_pages
(
'title_li=&sort_column=menu_order'
);</p>
<p>
// add a heading to the page link list and <br>
// exclude a couple extra pages<br>
wp_list_pages
(
'title_li=</p><h2>Pages</h2><p>&exclude=4,7'
);
</p>
Esto por lo general se coloca en el header.php
Filed under blogs by on .