admin

Website Tutorial

Creating a Frontend Login Form in WordPress

<?php if (!(current_user_can(‘level_0’))) { ?> <form action=”<?php echo get_option(‘home’); ?>/wp-login.php” method=”post”> <input type=”text” name=”log” id=”customer_email” value=”<?php echo wp_specialchars(stripslashes($user_login), 1) ?>” placeholder=”Email or Username*” style=”width:225px;height: 30px;” /> <input type=”password” name=”pwd” id=”customer_password” placeholder=”Password*” /> <div class=”action-btn”> <p><input type=”submit” name=”submit” value=”Sign In” class=”btn...
Website Tutorial

How to Customize WordPress Excerpts

Switch to the directory where the theme is located, open functions.php, and add the following code: function jackyexcerpt($max_char = 200, $more_text = ‘…’, $limit_type = ‘content’) { if ($limit_type == ‘title’) { $text = get_the_title(); } else { $text =...
Website Tutorial

Remove category base from WordPress URL

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’);...
Website Tutorial

How to disable automatic updates for themes and plugins in WordPress

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...
Website Tutorial

Disable thumbnails in wordpress

wordpress disable thumbnails Add the following code to your theme functions.php file: // Disable automatically generated image sizes function shapeSpace_disable_image_sizes($sizes) { unset($sizes[‘thumbnail’]); // disable thumbnail size unset($sizes[‘medium’]); // disable medium size unset($sizes[‘large’]); // disable large size unset($sizes[‘medium_large’]); // disable medium-large...
Website Tutorial

Build Your Own Custom WordPress Theme

Building your own custom WordPress theme can be a rewarding process. It allows you to create a unique look and functionality for your website that’s tailored to your specific needs. Here’s a step-by-step guide to help you build your own...
Website Tutorial

How to remove wordpress icon from website

To remove the WordPress icon (often the “Powered by WordPress” text or the WordPress logo) from your website, you’ll need to address it depending on how and where it’s being displayed. Here are some common methods: 1. Remove “Powered by...