Creating a blog page on WordPress is a straightforward process that allows you to publish and manage your content easily. Here’s a step-by-step guide to help you set up a blog page on your WordPress site: Step 1: Log in...
Remove category base from WordPress URL Add the following code in functions.php add_action( ‘load-themes.php’, ‘no_category_base_refresh_rules’); add_action(‘created_category’, ‘no_category_base_refresh_rules’); add_action(‘edited_category’, ‘no_category_base_refresh_rules’); add_action(‘delete_category’, ‘no_category_base_refresh_rules’); function no_category_base_refresh_rules() { global $wp_rewrite; $wp_rewrite -> flush_rules(); } // register_deactivation_hook(__FILE__, ‘no_category_base_deactivate’); // function no_category_base_deactivate() { // remove_filter(‘category_rewrite_rules’, ‘no_category_base_rewrite_rules’);...
1: Insert the following code into the functions.php file in the root directory of the current WordPress theme: add_filter(‘pre_site_transient_update_core’, create_function(‘$a’, “return null;”)); // Close core prompts add_filter(‘pre_site_transient_update_plugins’, create_function(‘$a’, “return null;”)); // Close plugin prompts add_filter(‘pre_site_transient_update_themes’, create_function(‘$a’, “return null;”)); // Close...
Do you want to have one or multiple of your WordPress plugins hidden yet still running and fully functional? It is entirely possible and quite easy to do, simply follow these steps: Login to your WordPress dashboard Under Appearance click on Editor Click...
001
Comments (0)
Note: Please be respectful and civil in your comments Cancel reply
Comments (0)