by Marc Tönsing
5 (75 reviews)
SimpleTOC – Table of Contents Block
SEO-friendly Table of Contents Gutenberg block. No JavaScript or CSS by default.
Compatible with WP 7.0
v7.0.7
Current Version v7.0.7
Updated 3 weeks ago
Last Update on 17 May, 2026
Refreshed 3 weeks ago
Last Refreshed on
Rank
#1,568
—
No change
Active Installs
10K+
-46.2%
KW Avg Position
23.6
—
No change
Downloads
555.6K
+83 today
Support Resolved
100%
—
No change
Rating
100%
Review 5 out of 5
5
(75 reviews)
Next Milestone 20K
10K+
20K+
216
Ranks to Climb
-
Growth Needed
8,000,000
Active Installs
Pro
Unlock Exact Install Count
See the precise estimated active installs for this plugin, calculated from real-time ranking data.
- Exact install estimates within tiers
- Track install growth over time
- Milestone progress predictions
Need 267 more installs to reach 20K+
Rank Changes
Current
#1,568
Change
Best
#
Downloads Growth
Downloads
Growth
Peak
Upgrade to Pro
Unlock 30-day, 90-day, and yearly download history charts with a Pro subscription.
Upgrade NowReviews & Ratings
5.0
75 reviews
Overall
100%
5
72
(96%)
4
3
(4%)
3
0
(0%)
2
0
(0%)
1
0
(0%)
Tracked Keywords
Showing 5 of 5| Keyword | Position | Change | Type | Updated |
|---|---|---|---|---|
| toc | 2 | — | Tag | 1 month ago |
| table of contents | 4 | — | Tag | 1 month ago |
| table | 12 | — | Tag | 1 month ago |
| accessibility | 49 | — | Tag | 1 month ago |
| block | 51 | — | Tag | 1 month ago |
Unlock Keyword Analytics
Track keyword rankings, search positions, and discover new ranking opportunities with a Pro subscription.
- Full keyword position tracking
- Historical ranking data
- Competitor keyword analysis
Support Threads Overview
Resolved
Unresolved
3
Total Threads
3
Resolved
0
Unresolved
100%
Resolution Rate
Track This Plugin
Get detailed analytics, keyword tracking, and position alerts delivered to your inbox.
Start Tracking FreePlugin Details
- Version
- 7.0.7
- Last Updated
- May 17, 2026
- Requires WP
- 5.9+
- Tested Up To
- 7.0
- PHP Version
- 7.3 or higher
- Author
- Marc Tönsing
Support & Rating
- Rating
- ★ ★ ★ ★ ★ 5
- Reviews
- 75
- Support Threads
- 3
- Resolved
- 100%
Keywords
Upgrade to Pro
Unlock keyword rankings, search positions, and detailed analytics with a Pro subscription.
Upgrade NowSimilar Plugins
WP Adminify – White Label WordPress, Admin Menu Editor, Login Customizer
7K+ installs
#2,707
Master Addons For Elementor – Widgets, Extensions, Theme Builder, Popup Builder & Template Kits
30K+ installs
#964
Gutenberg Essential Blocks – Page Builder for Gutenberg Blocks & Patterns
200K+ installs
#268
A
Adminimize
200K+ installs
#278
The Plus Addons for Elementor – Addons for Elementor, Page Templates, Widgets, Mega Menu, WooCommerce
100K+ installs
#322
Frequently Asked Questions
Common questions about SimpleTOC – Table of Contents Block
Select the block and select "group" in the context menu. Apply "background color", "link color" and "text color" to this group. SimpleTOC will inherit these styles. You would like to use this styled SimpleTOC group next time you write a post? Convert it to a reusable block.
If you really want to hide a single heading from the table of contents, then add the CSS class "simpletoc-hidden" to a heading block. You can find this field in the same place as the HTML anchor field: In the Block > Advanced sidebar. But first, think about the reason you would like to hide a specific heading. Maybe you would like to remove all headings of a specific depth level. Then there is an option for that in the blocks options in Gutenberg. If you think this heading should not be part of the toc perhaps it is not needed in the post itself?
You can convert your configured SimpleTOC block into a reusable block in Gutenberg. It will keep its settings. This way, you can use your desired settings for each new post by adding the reusable block.
If you add a custom class to the SimpleTOC block in "Advanced" and then "Additional CSS Class(es)" a div with that class will be wrapped around the HTML output.
Use the 'simpletoc_excluded_blocks' filter. For example, this code will exclude heading blocks that are inside a column block. Example: add_filter( 'simpletoc_excluded_blocks', function ( array $blocks ) { $blocks[] = 'core/column'; return $blocks; } );
The heavy plus character I used can not be colored with css without hacks. But you can change the icon to something else and change the color of the new icon. .simpletoc-collapsible::after { content: "✖"; color: #e94c89; }
I don’t see an easy solution at the moment. SimpleTOC is only a block that can be placed in your post. If there was a plugin that adds blocks to every post, then this would be the solution. I think this should be another separate plug-in to keep the code of SimpleTOC clean and … well, simple.