Easy-Table-of-Contents

WordPress plugin which adds a user friendly and fully automatic way to create and display a table of contents from the page content.

  • 所有者: ahmedkaludi/easy-table-of-contents
  • 平台:
  • 許可證:
  • 分類:
  • 主題:
  • 喜歡:
    0
      比較:

Github星跟蹤圖

=== Easy Table of Contents ===
Contributors: shazahm1@hotmail.com
Donate link: http://connections-pro.com/
Tags: table of contents, toc
Requires at least: 5.2
Tested up to: 5.3
Requires PHP: 5.6.20
Stable tag: 1.7.1
License: GPLv2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html

Adds a user friendly and fully automatic way to create and display a table of contents generated from the page content.

== Description ==

A user friendly, featured focused plugin which allows you to insert a table of contents into your posts, pages and custom post types.

= Features =

  • Automatically generate a table of contents for your posts, pages and custom post types by parsing its contents for headers.
  • Supports the <!--nextpage--> tag.
  • Supports the Rank Math plugin.
  • Supports the Classic Editor, Gutenberg, Elementor, WPBakery Page Builder and Visual Composer page editors.
  • Optionally enable for pages and/or posts. Custom post types are supported, as long as their content is output with the the_content() template tag.
  • Optionally auto insert the table of contents into the page, selectable by enabled post type.
  • Provides many easy to understand options to configure when and where to insert the table of contents.
  • Many options are available to configure how the inserted table of contents appears which include several builtin themes. If the supplied themes do no meet you needs, you can create your own by choosing you own colors for the border, background and link color.
  • Multiple counter bullet formats to choose from; none, decimal, numeric and roman.
  • Choose to display the table of contents hierarchical or not. This means headings of lower priority will be nested under headings of higher priority.
  • User can optionally hide the table of contents. You full control of this feature. It can be disabled and you can choose to have it hidden by default.
  • Supports smooth scrolling.
  • Selectively enable or disabled the table of contents on a post by post basis.
  • Choose which headings are used to generate the table of contents. This too can be set on a post by post basis.
  • Easily exclude headers globally and on a post by post basis.
  • If you rather not insert the table of contents in the post content, you can use the supplied widget and place the table of contents in your theme's sidebar.
  • The widgets supports being affixed or stuck on the page so it is always visible as you scroll down the page. NOTE: this is an advanced option since every theme is different, you might need support from your theme developer to learn what the correct item selector to use in the settings to enable this feature.
  • The widget auto highlights the sections currently visible on the page. The highlight color is configurable.
  • Developer friendly with many action hooks and filters available. More can be added by request on Github. Pull requests are welcomed.

= Live Examples =

Here are links to documentation pages for several of the premium templates for the Connections Business Directory plugin which utilize the widget included with this plugin:

= Roadmap =

  • Fragment caching for improved performance.
  • Improve SEO by adding options to add nofollow to TOC link and wrap TOC nav in noindex tag.
  • Improve accessibility.
  • Add Bullet and Arrow options for list counter style.

= Credit =

Easy Table Contents is a fork of the excellent Table of Contents Plus plugin by Michael Tran.

== Screenshots ==

  1. The General section of the settings.
  2. The Appearance section of the settings.
  3. The Advanced section of the settings.

== Installation ==

= Using the WordPress Plugin Search =

  1. Navigate to the Add New sub-page under the Plugins admin page.
  2. Search for easy table of contents.
  3. The plugin should be listed first in the search results.
  4. Click the Install Now link.
  5. Lastly click the Activate Plugin link to activate the plugin.

= Uploading in WordPress Admin =

  1. Download the plugin zip file and save it to your computer.
  2. Navigate to the Add New sub-page under the Plugins admin page.
  3. Click the Upload link.
  4. Select Easy Table of Contents zip file from where you saved the zip file on your computer.
  5. Click the Install Now button.
  6. Lastly click the Activate Plugin link to activate the plugin.

= Using FTP =

  1. Download the plugin zip file and save it to your computer.
  2. Extract the Easy Table of Contents zip file.
  3. Create a new directory named easy-table-of-contents directory in the ../wp-content/plugins/ directory.
  4. Upload the files from the folder extracted in Step 2.
  5. Activate the plugin on the Plugins admin page.

== Changelog ==

= 2.0 02/01/2020 =

  • NEW: Major rewrite of all code and processing logic to make it faster and more reliable.
  • NEW: Support for the tag.
  • NEW: Introduce helper functions for devs.
  • NEW: Support WPML.
  • NEW: Support Polylang.
  • NEW: Add filter to support the Rank Math plugin.
  • NEW: Introduce the ez_toc_maybe_apply_the_content_filter filter.
  • TWEAK: Improve translation compatibility.
  • TWEAK: Rework widget logic to allow multi-line TOC items, improve active item highlighting while removing the use of the jQuery Waypoints library.
  • TWEAK Add additional classes to TOC list items.
  • TWEAK: Add WOFF2 format for icon format and change font references in CSS.
  • TWEAK: Add font-display: swap for toggle icon.
  • TWEAK: Update JS Cookie to 2.2.1.
  • TWEAK: Update jQuery Smooth Scroll to 2.2.0.
  • TWEAK: Allow forward slash and angle brackets in headings and alternate headings.
  • TWEAK: Allow forward slash in excluded headings.
  • TWEAK: Remove new line/returns when matching excluded headings.
  • TWEAK: Simple transient cache to ensure a post is only processed once per request for a TOC.
  • TWEAK: Improve sanitization of alternate headings field value.
  • TWEAK: Deal with non-breaking-spaces in alternate headings.
  • TWEAK: Add the ability to exclude by selector content eligible to be included in the TOC.
  • TWEAK: Change the shortcode priority to a higher value.
  • TWEAK: Add filter to remove shortcodes from the content prior to the the_content filter being run to exclude shortcode content from being eligible as TOC items.
  • TWEAK: Add compatibility filters to remove shortcodes for Connections and Striking theme to remove them from eligible TOC item content.
  • TWEAK: Do not execute if root current filter is the wp_head or get_the_excerpt filters.
  • TWEAK: Add filter to exclude content by selector.
  • TWEAK: Move in-page anchor to after the heading instead of wrapping the heading to prevent conflicts with theme styling.
  • TWEAK: Utilize the ez_toc_exclude_by_selector filter the exclude the JetPack share buttons from eligible headings.
  • TWEAK: Remove the Elegant Themes Bloom plugin node from the post content before extracting headings.
  • TWEAK: Add compatibility filter for the Visual Composer plugin.
  • I18N: Add wpml-config.xml file.
  • BUG: Correct option misspelling.
  • BUG: Do not need to run values for alternate and exclude headings thru wp_unslash() because update_post_meta() already does.
  • BUG: Do not need to run stripslashes() when escaping the alternate heading value.
  • BUG: Sanitize the excluded heading string before saving post meta.
  • DEV: Change PHP keywords to comply with PSR2.
  • DEV:Bump minimum PHP version to 5.6.20 which matches WP core.

= 1.7 05/09/2018 =

  • NEW: Introduce the ez_toc_shortcode filter.
  • TWEAK: Fix notices due to late eligibility check. props unixtam
  • TWEAK: Tweak eligibility check to support the TOC widget.
  • TWEAK: Prefix a few CSS classes in order to prevent collisions with theme's and other plugins.
  • TWEAK: Avoid potential PHP notice in admin when saving the post by checking for nonce before validating it.
  • TWEAK: Using the shortcode now overrides global options.
  • TWEAK: the_content() now caches result of is_eligible().
  • TWEAK: Refactor to pass the WP_Post object internally vs. accessing it via the $wp_query->post which may not in all cases exist.
  • TWEAK: Use pre_replace() to replace one or more spaces with an underscore.
  • TWEAK: Return original title in the ez_toc_url_anchor_target filter.
  • TWEAK: Strip &nbsp;, replacing it with a space character.
  • TWEAK: Minor tweaks to the in page URL creating.
  • TWEAK: Wrap TOC list in a nav element.
  • TWEAK: Init plugin on the plugins_loaded hook.
  • TWEAK: Tweak the minimum number of headers to 1.
  • BUG: The header options from the post meta should be used when building the TOC hierarchy, not the header options from the global settings.
  • BUG: Do not double escape field values.
  • BUG: Ensure Apostrophe / Single quote use in Exclude Headings work.
  • OTHER: Update CSS to include the newly prefixed classes.
  • DEV: Remove some commented out unused code.

= 1.6.1 03/16/2018 =

  • TWEAK: Revert change made to allow HTML added via the ez_toc_title filter as it caused undesirable side effects.
  • BUG: Ensure Smooth Scroll Offset is parsed as an integer.

= 1.6 03/15/2018 =

  • NEW: Add px option for font size unit.
  • NEW: Add title font size and weight settings options.
  • NEW: Add the Mobile Smooth Scroll Offset option.
  • TWEAK: Change default for font size unit from px to % to match the default options values.
  • TWEAK: Correct CSS selector so margin is properly applied between the title and TOC items.
  • TWEAK: Honor HTML added via ez_toc_title filter.
  • TWEAK: Ensure the ezTOC content filter is not applied when running the_content filter.
  • TWEAK: Only enqueue the javascript if the page is eligible for a TOC.
  • TWEAK: Update icomoon CSS to remove unecessary CSS selectors to prevent possible conflicts.
  • TWEAK: The smooth scroll offset needs to be taken into account when defining the offset_top property when affixing the widget.
  • OTHER: Update frontend minified CSS file.
  • OTHER: Update the frontend minified javascript file.
  • DEV: phpDoc corrections.

= 1.5 02/20/2018 =

  • BUG: Correct CSS selector to properly target the link color.
  • OTHER: Update the WayPoints library.
  • DEV: Add a couple @todo's.

= 1.4 01/29/2018 =

  • TWEAK: Change text domain from ez_toc to easy-table-of-contents.
  • TWEAK: Rename translation files with correct text domain.
  • BUG: Ensure page headers are processed to add the in page header link when using the shortcodes.
  • BUG: Add forward slash to domain path in the plugin header.
  • I18N: Update POT file.
  • I18N: Update Dutch (nl_NL) translation.

= 1.3 12/18/2017 =

  • FEATURE: Add support for the [ez-toc] shortcode.
  • NEW: For backwards compatibility with "Table of Content Plus", register the [toc] shortcode.
  • NEW: Introduce the ez_toc_extract_headings_content filter.
  • TWEAK: Update the tested to and required readme header text.
  • TWEAK: Do not show the widget on the 404, archive, search and posts pages.
  • I18N: Add the nl_NL translation.

= 1.2 04/29/2016 =

  • TWEAK: Remove the font family from styling the TOC title header.
  • TWEAK: Pass the raw title to the ez_toc_title filter.
  • BUG: A jQuery 1.12 fix for WordPress 4.5.

= 1.1 02/24/2016 =

  • FEATURE: Add option to replace header wither alternate header text in the table of content.
  • NEW: Introduce the ez_toc_filter.
  • NEW: Introduce ezTOC_Option::textarea() to render textareas.
  • NEW: Introduce array_search_deep() to recursively search an array for a value.
  • TWEAK: Run table of contents headers thru wp_kses_post().
  • TWEAK: Escape URL.
  • TWEAK: Count excluded headings only once instead of multiple times.
  • TWEAK: Escape translated string before rendering.
  • TWEAK: Use wp_unslash() instead of stripslashes().
  • TWEAK: Escape translated string.
  • BUG: Fix restrict path logic.
  • OTHER: Readme tweaks.
  • I18N: Add POT file.
  • I18N: Add Dutch translation.
  • DEV: Update .gitignore to allow PO files.
  • DEV: phpDoc fix.

= 1.0 09/08/2015 =

  • Initial release.
    • Complete refactor and restructure of the original code for better design and separation of function to make code base much easier to maintain and extend.
    • Update all third party libraries.
    • Make much better use of the WordPress Settings API.
    • Minified CSS and JS files are used by default. Using SCRIPT_DEBUG will use the un-minified versions.
    • Add substantial amounts of phpDoc for developers.
    • Add many hooks to permit third party integrations.
    • Widget can be affixed/stuck to the page so it is always visible.
    • Widget will highlight the table of content sections that are currently visible in the browser viewport.
    • Widget will now generate table of contents using output from third party shortcodes.
    • Use wpColorPicker instead of farbtastic.
    • Remove all shortcodes.
    • Per post options are saved in post meta instead of set by shortcode.

== Frequently Asked Questions ==

= Ok, I've installed this... what do I do next? =

You first stop should be the Table of Contents settings admin page. You can find this under the Settings menu item.

You first and only required decision is you need to decide which post types you want to enable Table of Contents support for. By default it is the Pages post type. If on Pages is the only place you plan on using Table of Contents, you have nothing to do on the Settings page. To keep things simple, I recommend not changing any of the other settings at this point. Many of the other settings control when and where the table of contents is inserted and changing these settings could cause it not to display making getting started a bit more difficult. After you get comfortable with how this works... then tweak away :)

With that out of the way make sure to read the How are the tables of contents created? FAQ so you know how the Table of Contents is automatically generated. After you have the page headers setup, or before, either way... Scroll down on the page you'll see a metabox named "Table of Contents", enable the Insert table of contents. option and Update and/or Publish you page. The table of contents should automatically be shown at the top of the page.

= How are the tables of contents created? =

The table of contents is generated by the headers found on a page. Headers are the <h1>,<h2>,<h3>,<h4>,<h5>,<h6> HTML tags. If you are using the WordPres Visual Post Editor, these header tags are used and inserted into the post when you select one of the Heading n options from the formatting drop down. Each header that is found on the page will create a table of content item. Here's an example which will create a table of contents containing the six items.

`Item 1

You can also create "nested" table of contents. This is difficult to explain so I'll illustrate building on the previous example. In this example a table of contents will be created with the same six items but now the first three will each an child item nested underneath it. The indentation is not necessary, it was only added for illustration purposes.

`Item 1
Item 1.1 -- Level 2

You are not limited to a single a single nested item either. You can add as many as you need. You can even create multiple nested levels...

`Item 1
Item 1.1 -- Level 2
Item 1.1.1 -- Level 3
Item 1.1.2 -- Level 3
Item 1.1.3 -- Level 3
Item 1.2 -- Level 2
Item 1.2.1 -- Level 3
Item 1.2.2 -- Level 3
Item 1.2.3 -- Level 3
Item 1.3 -- Level 2

You can nest up 6 levels deep if needed. I hope this helps you understand how to create and build your own auto generated table of contents on your sites!

== Upgrade Notice ==

= 1.0 =
Initial release.

= 1.3 =
Requires WordPress >= 4.4 and PHP >= 5.3. PHP version >= 7.1 recommended.

= 1.4 =
Requires WordPress >= 4.4 and PHP >= 5.3. PHP version >= 7.1 recommended.

= 1.5 =
Requires WordPress >= 4.4 and PHP >= 5.3. PHP version >= 7.1 recommended.

= 1.6 =
Requires WordPress >= 4.4 and PHP >= 5.3. PHP version >= 7.1 recommended.

= 1.6.1 =
Requires WordPress >= 4.4 and PHP >= 5.3. PHP version >= 7.1 recommended.

= 1.7 =
Requires WordPress >= 4.4 and PHP >= 5.3. PHP version >= 7.1 recommended.

= 2.0-rc4 =
Requires WordPress >= 5.0 and PHP version >= 5.6.20 (>= 7.1 is recommended).

主要指標

概覽
名稱與所有者ahmedkaludi/easy-table-of-contents
主編程語言PHP
編程語言CSS (語言數: 3)
平台
許可證
所有者活动
創建於2015-09-08 14:10:01
推送於2025-05-05 08:05:09
最后一次提交2025-05-05 13:27:20
發布數38
最新版本名稱2.0.17 (發布於 2021-03-26 12:05:50)
第一版名稱1.0 (發布於 2015-09-15 14:52:50)
用户参与
星數68
關注者數8
派生數46
提交數1.4k
已啟用問題?
問題數785
打開的問題數110
拉請求數74
打開的拉請求數3
關閉的拉請求數25
项目设置
已啟用Wiki?
已存檔?
是復刻?
已鎖定?
是鏡像?
是私有?