Home › Forums › Support › Helping with solution footer menu › Reply To: Helping with solution footer menu
March 23, 2016 at 12:08 pm
#181091
Lead Developer
Lead Developer
You can use hooks so you don’t have to change the core file:
add_action( 'generate_after_footer_content','your_custom_footer_menu' );
function your_custom_footer_menu()
{ ?>
Your menu HTML/PHP in here
<?php }
Adding PHP: https://generatepress.com/knowledgebase/adding-php-functions/
Hope this helps 🙂