Home > Blockchain >  How to add meta tags manually in WordPress wesite?
How to add meta tags manually in WordPress wesite?

Time:12-11

I want to add meta tags in my website manually. where can i find code of homepage in WordPress. ?

CodePudding user response:

You can try it with this plugin.

Meta tag manager

CodePudding user response:

You can always make changes in the header.php file of your theme in the <head>...</head> section. Make sure, that you put it in the child theme, so it won't be overwritten after the theme updates (except if you use a custom made theme). Here is an example

<head>
<?php if ( is_front_page() ) { //if you want to add them only for homepage ?>
    <meta "your meta">
    ...
<?php } ?>
</head>
  • Related