First of all you i tell you, Cloud flare is CDN providing network. In this article i share how to clear Cache Custom Link and all over website. Official Website – https://www.cloudflare.com How to Clear Cache Login in Cloudflare. Then Go to Site Dashboard. Then Click on Caching then click on Configuration. Select any option […]
How To
Hey! if you are AdSense user and you are already added AdSense ad code in your website, So read the new article about AdSense code from Google. Read Article – Click Here What is Change All code is Same but new line added in script section. You can replace new ads code or you can […]
Check your website’s header status online. Put your web address and view header status or missing file. Official Website – https://securityheaders.com/ Created By – Scott_Helme How to Check Header Status Open Website or Click Here. Put Your Web Address then Click on SCAN button. Then See Result.
When you create your own designed wordpress theme. So add some important codes in your custom theme. And make powerfull theme for wordpress. How to Add Important Code Open your theme’s functions.php file. Then click here and all given code paste in your theme’s functions.php file. Then SAVE theme file and Take a new effect […]
RSS Feed RSS feed is a way for website authors to publish notifications of new content on their website. Really Simple Syndication is full name of RSS. How to Remove Comment Feed add_filter( ‘feed_links_show_comments_feed’, ‘__return_false’ ); or remove_action(‘wp_head’, ‘feed_links’, 2); There is two different code, You can paste any one code in your theme’s functions.php. […]
Add index and follow meta in robots.txt using functions.php and make your blog post for indexing. You can easily manage this code. Code – function thekroyaard_robots( $robots ) { $robots_index = array( ‘index’ => true, ‘follow’ => true, ‘max-snippet’ => ‘-1’, ‘max-image-preview’ => ‘large’, ‘max-video-preview’ => ‘-1’, ); return $robots_index; } add_filter( ‘wp_robots’, ‘thekroyaard_robots’ ); […]
Google Measuring Tool You can check your webpage speed using google’s online measuring tool. Input you web address and click on AUDIT button then wait and watch your web page Performance, SEO, Accessibility score. How To Do If you have smartphone or computer so lest check up your web page using google measuring tool. Follow […]
You can easily change your blog post’s permalink structure using code. If you want to change so paste given code in your theme’s functions.php file and take new changes in permalink structure. How To Change Permalink Structure Open active theme’s functions.php file. Paste code and click on SAVE button. Code – add_action( ‘init’, function() { […]
Sometime JavaScript code decrease your website’s performance and user experience. If you want to remove unused JavaScript so paste simple code on your website. Code – function wp_remove_scripts() { // check if user is admin if (current_user_can( ‘update_core’ )) { return; } else { // Check for the page you want to target if ( […]

Have you social media account, and want to add in your WordPress’s website without any type of plugins, So follow simple steps and add social media account. How To Add Social Media Account Open WordPress Dashboard then go to Appearance. Then click on Customize. Then click on Widget and select Sidebar. Then click on ADD […]