Join the Soledad Facebook Users Group here
for Share, assistance, discussion, and Updates related to Soledad WordPress Theme.

If you can't create a new ticket - you can send us an email via our contact form and we will get back to you.

Okay
  Public Ticket #3131884
Insert hook only for home page
Closed

Comments

  • turistadimestiere started the conversation

    Hello. I would like to insert the website structured data (schema.org) only on home page. I could do this through the functions.php but unfortunately I can't see the home page id. The Home is in fact dynamic, which is why it is not present among the pages in the wordpress backend. I could insert it in the page template with which the home is created but I don't understand what the corresponding file is. Could you give me some indication to do it?

  •  2,488
    PenciDesign replied

    Hi,

    Please add the following PHP code to your site:

    add_action('wp_head',function(){
      if ( is_home() || is_front_page() ) {
        // add your code here.
      }
    });

    The code above will add the custom code to the homepage header.

    Regards,
    PenciDesign.



  • turistadimestiere replied