Hi guys
I want to list Pages and categories byt using their name.. no by ID ex wp_list_pages('include=45,3,4'), I want to include a pages and category using their name not by ID as example ...
anyone please can help me out!!!!
Hi guys
I want to list Pages and categories byt using their name.. no by ID ex wp_list_pages('include=45,3,4'), I want to include a pages and category using their name not by ID as example ...
anyone please can help me out!!!!
The include= argument only supports ID numbers.
Thanks
can i do this way
<?php $cat1=get_cat_ID('cat-name') ?>
<?php wp_list_categories('include=$cat1') ?>
Do you think the above will work ?
It should.
Also see How do I determine a Post, Page, Category, Tag, Link, Link Category, or User ID?
Oops...missed this. This works for me:
<?php
$cat1=get_cat_ID('Currently Playing');
wp_list_categories("include=$cat1");
?>This topic has been closed to new replies.