Add the following code to your theme’s function.php file, or a functionality plugin to modify to exclude categories from your WordPress Blog Page. … [Read more...] about Exclude categories from blog
WP Core
Exclude Categories from RSS Feed
Insert the code snippet into your theme's functions.php, a helper file, or a functionality plugin to exclude specific categories from being displayed in WordPress RSS Feed results. X where X is the number/ID of your category, comma separated for multiple … [Read more...] about Exclude Categories from RSS Feed
Exclude Simple URLs in WordPress Search Results
This applies to the original simple URL's plugin by Nathan Rice and may not work with the new Lasso version. Locate the following in the simple URLs plugin.php Then insert "'exclude_from_search' => true," from the code snippet below into your code, and update the plugin. … [Read more...] about Exclude Simple URLs in WordPress Search Results
Exclude Categories from Search in WordPress
Insert the code snippet into your theme's functions.php, a helper file, or a functionality plugin to exclude specific categories from being displayed in WordPress search results. Apply the following code snippet to your theme's functions.php, included helper functions, or a functionality plugin. X where X is the number/ID of your category, comma separated for multiple. … [Read more...] about Exclude Categories from Search in WordPress
Change WordPress Login Page logo
Add the following code to your WordPress theme's function.php file, or a functionality plugin to Change WordPress Login Page logo. Change Style Enque the Stylesheet Change the Title … [Read more...] about Change WordPress Login Page logo
Prevent WordPress Search from listing Pages
Add the following code to your theme's function.php file, or a functionality plugin to prevent the WordPress Search function from listing Pages. … [Read more...] about Prevent WordPress Search from listing Pages
WordPress Multisite Plugin Integrations
Adding the following code snippets to your Multisite wp-config.php will allow the specific plugin to function properly when Network Activated. Akismet /** Define WordPress.com API Key */ define('WPCOM_API_KEY','9ab1da1a259d'); Backup Buddy /* Network Integration for Backup Buddy */ define( 'PB_BACKUPBUDDY_MULTISITE_EXPERIMENT', true ); … [Read more...] about WordPress Multisite Plugin Integrations
Restrict WordPress Admin Menu Items Based on Username
Add the following code to your WordPress theme's function.php file, or a functionality plugin to restrict WordPress Admin Menu Items by Username. … [Read more...] about Restrict WordPress Admin Menu Items Based on Username
Disable WordPress Plugin Deactivation
Add the following code to your WordPress theme's function.php file, or a functionality plugin. … [Read more...] about Disable WordPress Plugin Deactivation
Add, Remove & Reorder Dashboard Widgets By the User’s Role
Modify then add the following code to your WordPress theme's function.php file, or a functionality plugin to add, remove & reorder dashboard widgets by the User's role … [Read more...] about Add, Remove & Reorder Dashboard Widgets By the User’s Role