Correct Way to Manage Title Tags in WordPress
The title tag is a very important feature of any website. It is displayed at the top of browser tabs and also read by search engines. So, it should be clear to read as well as SEO friendly. WordPress is so powerful that it has customization options for almost anything in its structure. The title tag is no exception to this. However, while creating a WordPress theme, what is the...
Change title slug or separator in WordPress
add_filter( 'document_title_separator', 'your_custom_separator' ); function your_custom_separator( $separator ) { $separator = '|'; return $separator; }