Archived topic
Add full width call to action to latest post homepage - Marketer demo site
3 replies · Started by Davide on November 3, 2020
Hello GeneratePress team!
I've always worked with static, built "from scratches" homepages easily editable with default WP tools, Elementor or whichever page builder.
For the present project I'm on the other hand using a latest-posts homepage and I have no clue how to customise it, so my question before starting to dig into templates and loops:
Can I add a full page call to action right below the main navigation menu? I'm using the Marketer demo site; see image here: Full width CTA.
Best,
Davide
Hi,
You can definitely do it w/ PHP hooks.
try this PHP snippet:
add_action('generate_after_header',function(){
echo ' your code for the full width CTA here';
});
Hey Elvin,
sweet! It works perfectly, thanks for the quick answer ✌🏼
I figured that the secondary menu with a single item would also do the trick.
Best,
Davide
Glad it works for you. No problem. :)