PHP code example of kunoichi / toc-generator
1. Go to this page and download the library: Download kunoichi/toc-generator library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
kunoichi / toc-generator example snippets
// Register TOC.
// If you have theme option for it,
// detect conditions.
add_action( 'init', function() {
$parser = new Kunoichi\TocGenerator\WpParser();
$parser->set_title( __( 'Table of Contents', 'your-theme' ) );
} );
Kunoichi\TocGenerator\WpParser::render( get_queried_object_id() );