| Small Wordpress PHP problem
|
greencode

msg:4468661 | 8:51 am on Jun 23, 2012 (gmt 0) | In my Wordpress template I have the following code which basically gets the name and link of the sub category of category ID 1 and then echoes that out. I'm sure this is a very very simple PHP issue but I don't know how to get it so that all of it is contained within the link. So it currently looks like this: View all Art projects (with only "Art" being the link) whereas I want all of "View all Art projects" to be the link
<li><?php _e( 'View all', 'mytheme' ); ?> <?php foreach((get_the_category()) as $childcat) { if (cat_is_ancestor_of(1, $childcat)) { echo '<a href="'.get_category_link($childcat->cat_ID).'">'; echo $childcat->cat_name . '</a>'; }} ?> <?php _e( 'Projects', 'mytheme' ); ?></li>
Thanks in advance for any help.
|
brandozz

msg:4468934 | 4:10 pm on Jun 24, 2012 (gmt 0) | You could us wp_list_categories within a list
<ul class="subcat-lists"> <php wp_list_categories('title_li=&child_of=1'); ?> </ul>
|
|
|