Reply To: New links with the new update

Home Forums Support New links with the new update Reply To: New links with the new update

Home Forums Support New links with the new update Reply To: New links with the new update

#198702
Tom
Lead Developer
Lead Developer

Your file should start with <?php, then just add the code.

Should look like this:

<?php

add_action( 'after_setup_theme','generate_remove_footer_meta' );
function generate_remove_footer_meta()
{
    remove_action( 'generate_after_entry_content', 'generate_footer_meta' );
}

This will handle #2 as well.