Search Engine Visibility checkbox after indexed

Google’s Webmaster Tools allows you to request pages to be removed from Google’s index. This should happen a bit quicker than waiting for the crawler to remove the site automatically. If you haven’t already, you or your client will need to add the develop site to Webmaster Tools. Then you can do the following for … Read more

how to set title of each page or post for SEO

To properly set the title tag in a theme you shouldn’t put it in header.php manually. Your header.php should have wp_head() somewhere between <head></head>, then you can let WordPress set the title tag by adding support for title-tag to your theme: function wpse_304818_theme_setup() { add_theme_support( ‘title-tag’ ); } add_action( ‘after_setup_theme’, ‘wpse_304818_theme_setup’ );

Custom Canonical URLs

Unfortunately, there’s no filter in the rel_canonical() function. But you can remove that function from wp_head altogether and write your own. Try adding this to the functions.php at your old domain: remove_action( ‘wp_head’, ‘rel_canonical’ ); add_action( ‘wp_head’, ‘new_rel_canonical’ ); function new_rel_canonical() { if ( !is_singular() ) return; global $wp_the_query; if ( !$id = $wp_the_query->get_queried_object_id() ) … Read more

How to hide sensitve page from google spiders and non-membres in wordpress!

Use password protection mechanism Alterative you can use wordpress hook in your theme to show your post/page only for administrators this way: add_action(‘wp’, function() { if(is_page(‘my-data’) && !current_user_can(‘manage_options’)) die(“123”) }); Note: don’t use this code. It is just for demonstration. Better use hook template_redirect or something else. We need more info about your environment to … Read more

Automatic SEO for wordpress [closed]

take a look at WordPress SEO by Yoast it will cover : 1) make the title of the page, the title of the post 2) make the description based on the first paragraph as for your #3 make the keyword meta by parsing the whole post, retrieve all the relevant word that are more that … Read more

Reactjs headless WordPress theme configure SEO

Which is the best way to solve it. There is no WP based solution to solve this. Any WP solutions will modify the output of a WP theme, but you don’t have a WP theme. What you have is a React web application that talks to a REST API and gives the appearance of a … Read more

Hata!: SQLSTATE[HY000] [1045] Access denied for user 'divattrend_liink'@'localhost' (using password: YES)