PDA

View Full Version : About wordpress plugins?



delnaaz
02-03-2009, 05:03 AM
i just want to create a page and the link of the page should not be visible from the home page i want to display the link inside other page.

So is there any wordpress plugin available which i can use for this purpose.

Jean-Luc
02-03-2009, 05:28 AM
You have to edit the wp_list_pages call in header.php of your theme.


<?php wp_list_pages('exclude=9&title_li='); ?>
This will exclude page with ID 9 from the list.

Jean-Luc

delnaaz
02-03-2009, 07:48 AM
is it for that particular page only or for all the pages?????

Jean-Luc
02-03-2009, 08:28 AM
It is for that particular page. To exclude several pages, use:
<?php wp_list_pages('exclude=19,25&title_li='); ?>This will exclude pages with ID's 19 and 25.

Jean-Luc

bryansmith
02-11-2009, 10:31 AM
i just want to create a page and the link of the page should not be visible from the home page i want to display the link inside other page.

So is there any wordpress plugin available which i can use for this purpose.

You will have to check for home page in wordpress and if it is home page then exclude that page link using the way suggested earlier and on other pages do not exclude it (you have to do this as header is common to all pages.