This topic is: resolved
- This topic has 23 replies, 4 voices, and was last updated 10 years, 3 months ago by .
- The forum ‘General Discussion’ is closed to new topics and replies.
These forums are for general discussion on WordPress and Genesis. Official support for StudioPress themes is offered exclusively at My StudioPress. Responses in this forum are not guaranteed. Please note that this forum will require a new username, separate from the one used for My.StudioPress.
Community Forums › Forums › Archived Forums › General Discussion › Create a second Page Like a "Blog"
Sorry all the suggestions you made did not work.
I had to add the functions.php to exclude a category from my blog.
Thanks for trying....
if you are getting the white screen it means you deleted extra code or did not delete all of your custom code. You can change out the functions.php file with the default code and the screen should come back just fine.
I am not sure why this isn't working for you but I can create add the custom code I provided just fine and I have a recent posts widget with exclude options.
as for your exclude category from the homepage, you need to modify the numbers for your category id
<?php
function excludeCat($query) {
if ( $query->is_home ) {
$query->set('cat', '-3,-5,-23');
}
return $query;
}
add_filter('pre_get_posts', 'excludeCat');
?>
change the -3, -5, -23 to the categories you want to change.
I specialize in child theme customizations and The Dynamik Website Builder
Visit me here: Black9Design.com | ParkerWadeSmith.com | AllThingsGenesis.com
To exclude categories from your recent posts follow this tutorial
http://allthingsgenesis.com/add-exclude-options-recent-posts-widget/
I specialize in child theme customizations and The Dynamik Website Builder
Visit me here: Black9Design.com | ParkerWadeSmith.com | AllThingsGenesis.com
to exclude categories from your homepage loop follow this tutorial
http://allthingsgenesis.com/exclude-categories-displaying-homepage-loop/
I specialize in child theme customizations and The Dynamik Website Builder
Visit me here: Black9Design.com | ParkerWadeSmith.com | AllThingsGenesis.com
© 2024 WPEngine, Inc.