joli_toc_after_table_of_contents

Lets you add content after the table of contents.

add_action( 'joli_toc_after_table_of_contents', 'after_toc' );

function after_toc(){
    echo '<p>Goodbye!</p>';
}
Was this page helpful?