Wordpress List Page -
i'm trying convert html wordpress theme. navigation this
<li><a href="">home</a><small>home</small></li> <li><a href="">flavors</a><small>subtitle</small></li> <li><a href="">about us</a><small>subtitle 2</small></li> <li><a href="">photos</a><small>subtitle 3</small></li> <li><a href="">our shop</a><small>subtitle 4</small></li>
my code far is
<li><a href="<?php bloginfo('url'); ?>" title="home">home</a><small>home</small></li> wp_list_pages('title_li=&link_after=<small>'.get_post_meta($post->id, 'subtitle', true).'</small>');
as goes, doesn't work. add custom field subtitle every page put subtitle thing, can't call in wp_list_pages loop.
any help?
here's tutotial on adding subtitles menu links can try.
Comments
Post a Comment