Skip to content
Public Ticket #22347

Insert hook only for home page

Conversation thread

PenciDesign Supporter replied

Staff Reply

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 started the conversation

Conversation Start

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?

Want to join this conversation or access attachments? Sign in first.