logo logo
  • Home
  • Streaming Premium Account
  • Tools Premium Account
  • Shop
  • Welfare
    • Account
    • Cracked Programs
    • Recourse
    • Amazon Affiliate
  • Digital Marketing
    • Search Engine Marketing
    • Social Media Marketing
    • Content Marketing
    • Email Marketing
  • Home
  • Streaming Premium Account
  • Tools Premium Account
  • Shop
  • Welfare
    • Account
    • Cracked Programs
    • Recourse
    • Amazon Affiliate
  • Digital Marketing
    • Search Engine Marketing
    • Social Media Marketing
    • Content Marketing
    • Email Marketing
  1. Home
  2. Website Tutorial
  3. Article list
the Difference Between `localhost` and `127.0.0.1` IP Addresses

Website Tutorial the Difference Between `localhost` and `127.0.0.1` IP Addresses

localhost is a hostname that refers to the current computer or device that you are using. It is commonly used to access web applications or server software that is running on the same machine. When you use the localhost hostname in a web browser or other networked application, it resolves to the IP address 127.0.0.1. 127.0.0.1 is a loopback IP…

28 Views 0 Comments
Website Tutorial August 22, 2024
Get all WordPress category names and IDs

Website Tutorial Get all WordPress category names and IDs

function show_category(){ global $wpdb; $request = “SELECT $wpdb->terms.term_id, name FROM $wpdb->terms “; $request .= ” LEFT JOIN $wpdb->term_taxonomy ON $wpdb->term_taxonomy.term_id = $wpdb->terms.term_id “; $request .= ” WHERE $wpdb->term_taxonomy.taxonomy = ‘category’ “; $request .= ” ORDER BY term_id asc”; $categorys = $wpdb->get_results($request); foreach ($categorys as $category) { $output = ‘<span>’.$category->name.”(<em>”.$category->term_id.'</em>)</span>’; echo $output; } }

20 Views 0 Comments
Website Tutorial August 21, 2024
WordPress completely disables the RSS function

Website Tutorial WordPress completely disables the RSS function

WordPress completely disables the RSS function If you think RSS is useless, you can also disable it directly by adding the following code to the theme functions.php function: function itsme_disable_feed() { wp_die( __( ‘No feed available, please visit the <a href=”‘.%20esc_url(%20home_url(%20’/’%20)%20)%20.’”>homepage</a>!’ ) ); } add_action(‘do_feed’, ‘itsme_disable_feed’, 1); add_action(‘do_feed_rdf’, ‘itsme_disable_feed’, 1); add_action(‘do_feed_rss’, ‘itsme_disable_feed’, 1); add_action(‘do_feed_rss2’, ‘itsme_disable_feed’,…

12 Views 0 Comments
Website Tutorial August 21, 2024
Creating a Frontend Login Form in WordPress

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 top” /></p> <p><label for=”rememberme”><input name=”rememberme” id=”rememberme” type=”checkbox” checked=”checked” value=”forever” /> remember</label> <br>New User<span style=”font-family:Arial;”>?</span> Register…

27 Views 0 Comments
Website Tutorial August 19, 2024
How to Customize WordPress Excerpts

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 = get_the_content(); } $text = apply_filters(‘the_content’, $text); $text = strip_tags(str_replace(‘]]>’, ‘]]>’, $text)); $text = trim($text); if…

29 Views 0 Comments
Website Tutorial August 19, 2024
Remove category base from WordPress URL

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’); // We don’t want to insert our custom rules again // no_category_base_refresh_rules(); // } //…

16 Views 0 Comments
Website Tutorial August 16, 2024
How to disable automatic updates for themes and plugins in WordPress

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 theme prompts remove_action(‘admin_init’, ‘_maybe_update_core’); // Disable WordPress from checking for updates remove_action(‘admin_init’, ‘_maybe_update_plugins’); // Disable…

27 Views 0 Comments
Website Tutorial August 16, 2024
Disable thumbnails in wordpress

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 size unset($sizes[‘1536×1536’]); // disable 2x medium-large size unset($sizes[‘2048×2048’]); // disable 2x large size return $sizes;…

27 Views 0 Comments
Website Tutorial August 15, 2024
Build Your Own Custom WordPress Theme

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 WordPress theme from scratch: ### 1. **Set Up Your Development Environment** – **Local Development**: Install…

20 Views 0 Comments
Website Tutorial August 14, 2024
How to remove wordpress icon from website

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 WordPress” Text Using a Theme Customizer: Log in to your WordPress admin dashboard. Go to…

28 Views 0 Comments
Website Tutorial August 14, 2024
  • «
  • 1
  • 2
  • 3
  • 4
  • ...
  • 11
  • »
Latest Posts
2026 Peacock Premium Free Premium Accounts (Direct Login!)

2026 Peacock Premium Free Premium Accounts (Direct Login!)

Looking to catch the 2026 World Cup live, stream Premier League matches, or binge-watch your favorite NBC/Bravo shows on Peacock without paying for a monthly subscription? Today, we are dropping a fresh batch of Peacock Premium shared accounts for 2026! No catches, no tricky bypasses. This is a straight email-and-password share that works across all...
2026 Free PARAMOUNT+ Premium Account Cookies

2026 Free PARAMOUNT+ Premium Account Cookies

https://softurl.in/UkBYpL Looking to binge the latest hit series, Hollywood blockbusters, or live UEFA Champions League matches on Paramount+ without breaking the bank? We’ve got you covered for 2026! Today, we are sharing a dual-method bypass for Paramount+ Premium (Commercial-Free Tier) so you can enjoy 4K Ultra HD streaming instantly. We are providing both direct account...
Adobe Illustrator-Back To School Illustration

Adobe Illustrator-Back To School Illustration

Adobe Illustrator-Back To School Illustration Back To School Illustration High-quality vector illustration for your design needs. Perfect for your project design, print template, presentation design, social media, creative project, sticker design, etc. The illustration showcases: School bus, School backpack, Book, Blackboard, Apple on top of books, Lunchbox, Graduation cap, Paintbrush and color palette, Scissors and glue, Alarm...
WordPress Themes-Posty – News Magazine WordPress Theme

WordPress Themes-Posty – News Magazine WordPress Theme

Overview Posty – News Magazine WordPress Theme Overview Posty has been designed and developed with a modern responsive design, awesome typography and a focus on readability to provide your visitors with a quality user experience. It supports Elementor Page Builder. That will make this theme is easy to use for a new WordPress user. You don’t...
Video Templates-Modern AI Software Promotion with Neon UI and Automation Features

Video Templates-Modern AI Software Promotion with Neon UI and Automation Features

This video template offers a dynamic and professional solution for showcasing artificial intelligence software and SaaS platforms. The design features a high-contrast dark aesthetic illuminated by vibrant neon glowing borders in shades of purple, pink, and blue. Key animated sequences include a floating dashboard interface demonstrating real-time analytics, a collaborative team workflow diagram with connected...
Hot Posts
February 23-2024-X45 Disney+ Premium Accounts

February 23-2024-X45 Disney+ Premium Accounts

[email protected]:Taylorswift13! | Status = ACTIVE | Plan = [ Disney Plus Monthly – US – Web ] | Next Renew = [2024-01-22] | Bundle = False ? [email protected]:Liam2255! | Status = ACTIVE | Plan = [ Disney+, Hulu, and ESPN+ ] | Next Renew = [2024-01-03] | Bundle = True ? [email protected]:Damon2012 | Status =...
2026 Free Netflix Premium Account Cookies

2026 Free Netflix Premium Account Cookies

How to use Netflix Cookies to log in to Netflix? 2026 Free Netflix Premium Account Cookies https://shortxlinks.in/zflC2c9
2026 Crunchyroll Premium Accounts

2026 Crunchyroll Premium Accounts

2026 Crunchyroll Premium Accounts [email protected]:pratodearrozxd10 | EmailVerified = true | Plan = 〖MEGA FAN MEMBER〗-[cr_fan_pack.1_month] | Subscription = True | Expiry = 2026-06-17 | RemainingDays = 5 | Country = Brazil 🇧🇷[email protected]:krijan12 | EmailVerified = true | Plan = 〖FAN MEMBER〗-[crunchyroll.google.premium.monthly] | Subscription = True | Expiry = 2026-06-16 | RemainingDays = 4 | Country...
2026 Free Disney+ Premium Accounts

2026 Free Disney+ Premium Accounts

2026 Free Disney+ Premium Accounts  https://softurl.in/YLZicUg 2026 Free Disney+ Premium Accounts – Updated Daily Looking for free Disney+ Premium accounts in 2026? Our platform provides a frequently updated collection of Disney+ Premium account information, refreshed daily to help users discover the latest available access options. With Disney+ Premium, viewers can enjoy ad-free streaming, 4K Ultra...
2026 Free HBO Max Premium Accounts

2026 Free HBO Max Premium Accounts

2026 Free HBO Max Premium Accounts To protect the provider’s interests, please click the link to obtain the account and password. working now https://shortxlinks.in/eU9O6

 Theme by Puock