I want to create a page template that doesn’t use footer. Removing get_footer()
will not work in this case. Because my theme adds the stylesheets and scrtipts after the footer (before /body) and if I remove get_footer()
all the scripts and styles are not loaded which will mess up css styling on the page.
I tried to create a separate file footer-none.php without footer area elements and used get_footer(none);
. But this is not working.
Can you please help me with this?
Thanks.