Neither of the plug-ins above worked.
Below is the code from my functions.php file. The theme is Zeta. Is this where I can place a code to exclude certain pages? If so where and what?
Please help?
# Displays a list of pages
function dp_list_pages() {
global $wpdb;
$querystr = “SELECT $wpdb->posts.ID, $wpdb->posts.post_title FROM $wpdb->posts WHERE $wpdb->posts.post_status = ‘publish’ AND $wpdb->posts.post_type = ‘page’ ORDER BY $wpdb->posts.menu_order ASC”;
$pageposts = $wpdb->get_results($querystr, OBJECT);
if ($pageposts) {
foreach ($pageposts as $post) {
?>