Archived topic
Insert text between menu and page content.
2 replies · Started by Daniel on November 24, 2018
Hello
Is it possible to insert text using hooks between menu and page content? Screenshot: http://prntscr.com/lmhrxn
I would like to display that text only on certain posts.
Thanks for help in advance...
So i have managed to figure out most of the stuff, but for unknown reason the text is not displaying on my second post. This is the code that i'm using :
<?php if ( is_single(673, 132) ) : ?>The massage<?php endif; ?>
Can someone one explain why this isn't working? The message is only displayed on post 673 not on 132.
Hi there,
Not sure how you are adding it currently but the before_main_content hooks should work for you:
https://docs.generatepress.com/article/hooks-visual-guide/
https://docs.generatepress.com/article/hooks-element-overview/
As for your code only displaying on two pages, because you have this conditional tags: is_single(673, 132)
Try our Hooks Elements suggested above, it's built for achieving things like this.
Let me know if this helps :)