On the footer section column that displays PAGES, how do hide the ones I don't want to show. It gives a list of every page I have created.
Jamil
On the footer section column that displays PAGES, how do hide the ones I don't want to show. It gives a list of every page I have created.
Jamil
Hey,
open up widgets.php and search for following code:
echo"<div class='box box_small widget_archive'>";
echo"<h3>Pages</h3>";
echo"<ul>";
wp_list_pages('title_li=&depth=-1' );
echo"</ul>";
echo"</div>";
Replace it with:
echo "";
Another option is to drag'n'drop an empty text widget into the footer column widget area.
Thanks so much. But, is there a way to list just certain pages, like "about us" "contact us".... instead of all of them.
I don't necessarily want to get rid of the entire column, just the pages I don't want everyone to see.
You can use a text widget with link to list certain pages only. I.e. use following html code:
<a href="my-page.html">about us</a>
<a href="my-page-2.html">contact us</a>You must log in to post.