Insert plugin content before body end

Hook the wp_footer action to output markup before </body>:

function your_function() {
    echo '<p>foo</p>';
}
add_action('wp_footer', 'your_function');

Leave a Comment

tech