I am new to WP and Thematic (and learning php as I need to).
Have downloaded MAMP and installed WP locally to learn/test. I have installed a test child theme ('Awesome') and I have two files in that folder (function.php and stylesheet.css)
How do I remove the list of Pages that appear in the Sidebar? I want the Pages to appear in the MENU only.
I was able to get the results that I wanted by commenting the following code in the sidebar.php file. What is the recommended way of getting this result/using the child theme
<li id="pages">
<h3><?php _e('Pages', 'thematic') ?></h3>
-
<?php wp_list_pages('title_li=&sort_column=post_title' ) ?>