Table of Contents
Table of Contents functionality
Last modified: February 21, 2025
Extension name
t2/table-of-contents
Introduction & Usage
The Table of Contents extension allows to automatically generate a table of contents for a page based on the headings found in the page content. To add the table of contents to a page, add the template to either the wp_footer
or a template part.
Example:
/**
* Trigger toc sidebar.
*/
function t2_toc_sidebar(): void {
if ( ! function_exists( '\T2\Extensions\Library\TableOfContents\Template\render' ) ) { // phpcs:ignore
return;
}
echo \T2\Extensions\Library\TableOfContents\Template\render( get_the_ID() ); // phpcs:ignore
}
add_action( 'wp_footer', 't2_toc_sidebar' );
Properties (t2.json)
Add gui to allow toggling Table of contents on/off per post
Flatten the table of contents.
Set which heading levels to include in the table of contents.
postTypes
string[]Post types to add table of contents
Extension Filters
t2/table-of-contents/blocks
/**
* Set what blocks to extract headings from.
*
* @param array $blocks_to_render The blocks to render.
*/
$blocks_to_render = \apply_filters( 't2/table-of-contents/blocks', [ 'core/heading' ] );
t2/table-of-contents/wrapper_blocks
/**
* Set what wrapper blocks to check for headings.
*
* @param array $innerblocks_to_check The inner blocks to check.
*/
$innerblocks_to_check = \apply_filters( 't2/table-of-contents/wrapper_blocks', [ 'core/group', 'core/columns', 'core/column' ] );