How To

Create .htaccess file for wordpress’s website. open given website link and use online tool for making .htaccess file. Official Website – Click Here How to Create .htaccess open website – click here. Enter your website’s details and fill all fileds. then click on GENERATE .HTACCESS Button. Copy and Paste GENERATED code in your public_html > […]

Label Post Label name is a category name. When you publish any post and add Label name, then automatic show in related item’s in same label name’s post. How To Show Latest Posts with Thumbnail Use this code in where you show specific label name’s post in blogspot website. <style> /* Recent posts by labels […]

Permalink website’s URL is Permalink, Have your website in wordpress and want to customize permalink structure via code, So Open your active theme’s folder and paste given code in functions.php file. /* permalink structure*/ add_action( ‘init’, function() { global $wp_rewrite; $wp_rewrite->set_permalink_structure( ‘/%postname%/’ ); } ); When you paste this, then your new posts and uploaded […]

Image ALT Attribute To understand the search engine in the website, there is an ALT attribute, by whose name it can be identified whose photo is. How to Add Name in ALT attribute using code- >> Open your active theme and paste given code in functions.php. add_action( ‘add_attachment’, ‘my_set_image_meta_upon_image_upload’ ); function my_set_image_meta_upon_image_upload( $post_ID ) { […]

If You have create SQL database by mistake, And you want to delete but not know MAIN SQL name. So I have solution to know main domain name’s sql database name. How to Know MAIN SQL Database Name login in cpanel Go to public_html then find and open wp-config.php file and See MAIN SQL Database […]

Author/Username When we publish a post, the profile of the user who has published the post by WordPress automatically gets indexed in the sitemap, due to which sometimes the URL of the main post is not indexed but the author’s link appears in the search engine, due to which The visitors coming to the website […]

Taxonomies Stop indexing your website’s taxonomies (category, post-tag, post-format/type) without using any plugins. Just paste given code in your functions.php file. How to Stop indexing taxonomies via code add_filter( ‘wp_sitemaps_taxonomies’, function( $taxonomies ) { unset( $taxonomies[‘post_tag’] ); unset( $taxonomies[‘post_format’] ); unset( $taxonomies[‘category’] ); return $taxonomies; } ); Then SAVE functions.php file after paste this code.

Last Modified Date in Default WordPress Sitemap have not any type of Last Modified Date date in URL. So You Add Last Modified Date in Your WordPress custom theme without plugins. Simple paste given code in your theme’s functions.php file. How To login in cpanel open active themes folder and then open functions.php add_filter( ‘wp_sitemaps_posts_entry’, […]

What is Bing Webmaster Bing in one type for search engine like google, yahoo. official website – click here What is Bing webmaster This is a part of bing search engine. bing webmaster is indexing/crawlr tool. When you submit your website’s sitemap then bing webmaster crawl your sitemap and index your post in search engine.

Bing webmaster If you have any website in WordPress platform, so add/install Bing URL Submissions Plugin absolutely free By bing webmaster. Use this plugin in your website. When you publish your new post then this plugin automatic send to Bing website through bing API. How To Use First of all create and make account in bing […]