Home / Admin / Remove the default ‘aioseo-‘ ID prefix added for the Table of Content block
Duplicate Snippet

Embed Snippet on Your Site

Remove the default ‘aioseo-‘ ID prefix added for the Table of Content block

This snippet can be used to remove the default 'aioseo-' ID prefix added for the Table of Content block.

<10
Code Preview
php
<?php
add_filter( 'aioseo_toc_hash_prefix', function( $prefix ) {
    return '';
} );

Comments

Add a Comment