Hi Tom, thanks for helping.
I am using this for a custom footer:
/**
*Fjern temaets normale copyright
*/
add_action('after_setup_theme','generate_copyright_remove_default_message');
function generate_copyright_remove_default_message()
{
remove_action( 'generate_credits', 'generate_add_footer_info' );
remove_action( 'generate_copyright_line','generate_add_login_attribution' );
}
/**
* Add the custom copyright
* @since 0.1
*/
add_action('generate_credits','generate_copyright_add_custom_message');
function generate_copyright_add_custom_message()
{
?>
Digitalt lejrb?l <i class="fab fa-free-code-camp" style="color:orange"></i> skabt med <i class="fa fa-heart" style="color:red"></i> til historiel?rere - Del og hersk!<br/>
<a href="https://historielaerer.dk/privatlivspolitik">Privatlivspolitik/GDPR</a><br/>
<a href="https://eepurl.com/4H3hz"><i class="fas fa-envelope-square fa-2x"></i></a>
<a href="https://www.facebook.com/historielaererforeningen"><i class="fab fa-facebook-square fa-2x"></i></a>
<a href="https://historielaerer.dk/feed/podcast"><i class="fa fa-podcast fa-2x"></i></a>
<a href="https://twitter.com/forumhistoricus"> <i class="fab fa-twitter-square fa-2x"></i></a>
<a href="https://www.linkedin.com/company/historiel%C3%A6rerforeningen-for-gymnasiet-og-hf"> <i class="fab fa-linkedin-square fa-2x"></i></a>
<a href="https://www.youtube.com/channel/UCS4VfPJF-jyU_D66ulPBTKQ"> <i class="fab fa-youtube-square fa-2x"></i></a>
<?php
}
.. but I can’t locate <?php wp_footer(); ?>
in this?