Site logo

Archived topic

How can i insert ads into specific place.

1 reply · Started by Daniel on March 10, 2018

Viewing posts 1–2 of 2

How can i insert ads into specific spaces like in the image where the arrows are pointing Screenshot? I tried to do it with hooks but it didn't work.

Hi there,

Which hooks did you try?

The first one should be after header.

Try this for the second one:

add_action( 'generate_entry_title', 'lh_after_featured_image', 15 );
function lh_after_featured_image() {
?>
    Your content in here
<?php
}

Let me know.

This archived topic is closed to new replies.