이 플러그인은 최근 3개의 주요 워드프레스 출시와 시험 되지 않았습니다. 워드프레스의 좀 더 최근 버전으로 이용할 때 더 이상 관리되지 않고 지원되지 않고 호환성 문제가 있을 수 있습니다.

Author: António Andrade

설명

WP Table of Paginated Contents handles naming of each post page and produces a Table of Contents.
It uses the native <!--nextpage--> tag but adds a shortcode to store section titles.

Check the screenshots for a clearer idea.

Features:

  • Naming of each post page;
  • Output or generation of a Table of Contents (using a list or a drop down menu);
  • Output or generation of next/prev post pages navigation, using the section titles.

Suggestions are welcome and please report any bugs found!

사용방법

This plugin provides two main methods to be used within the loop (https://codex.wordpress.org/The_Loop).

To echo the table of contents:

To echo the next/prev navigation links:

Usage Examples

To output the Table of Contents use the following snippet, inside your post loop:

<?php if( function_exists( 'wptopc' ) ){ wptopc(); } ?>

Alternatively you may output the Table of Contents as a drop down menu using the snippet:

<?php if( function_exists( 'wptopc' ) ){ wptopc("select", "The Post Table of Contents"); } ?>

To output a next/prev navigation with the section titles, use the following snippet, inside your post loop:

<?php if( function_exists( 'wptopc_pagination_links' ) ){ wptopc_pagination_links(); } ?>

To store the output of these functions prefix them with “get_”, like in:
get_wptopc()
or
get_wptopc_pagination_links()

스크린샷

  • The TinyMCE button.
  • The naming prompt.
  • The outputs (check the usage section).

설치

  1. Download WP Table of Paginated Contents;
  2. Extract its content;
  3. Upload the wp-table-of-paginated-contents folder to wp-content/plugins;
  4. Activate it under Plugins;

후기

2016년 9월 3일
I like this plugin a lot - however it broke in v2.1 - titles in the shortcodes weren't being recognised correctly, if at all. The fix turned out to be enclosing the titles in double quotes, thus: [section_title title=This won't work] [section_title title="This works"] Unfortunately, the TinyMCE button for inserting shortcodes doesn't add them. Everything's fine if you remember to add them yourself, though.
2016년 9월 3일
The plugin was working great until Wordpress updated and killed the "option" dropdown. Have tried numerous methods to contact the developer Trebly, however no replies yet. I believe it is a simple fix, but with no knowledge on where to start looking, I have rated this 2/5. I will update if I hear back.
2016년 9월 3일
This fills a large gap, I've been searching for a plugin just like this, noboday has it until now. Problem is, I have no idea how to actually generate the table of contents since the instruction assumes the dowloader knows php / jscript etc. One comment said update the content.php, the readme says something about installing in the wordpress 'loop'. This would be 4-5 stars if it had some instructions, it's not just install the plugin and it works apparently.'
2016년 9월 3일
This plugin does almost exactly what I need: add proper pagination to WordPress. Meaning that you can split your posts and set custom page titles on a per page basis. Plugin has not been updated in over a year so I hope it will support 4.4 and future WP versions.
모든 7 평가 읽기

기여자 & 개발자

“Author: António Andrade”(은)는 오픈 소스 소프트웨어입니다. 다음의 사람들이 이 플러그인에 기여하였습니다.

기여자

자국어로 “Author: António Andrade”(을)를 번역하세요.

개발에 관심이 있으십니까?

코드 탐색하기는, SVN 저장소를 확인하시거나, 개발 기록RSS로 구독하세요.

변경이력

2.1 (19/12/2015)

  • Added 3 parameters to link functions to allow more customization.

1.3 (19/04/2014)

  • Fixed TinyMCE plugin;
  • Tested under 3.9.

1.2 (01/07/2012)

  • Added prepend and append options;
  • Tested under 3.4.1.

1.1.1 (25/04/2012)

  • Tested under 3.3.2.

1.1 (25/04/2012)

  • Feature: added ‘get_’ alternative methods, providing the ability to store outputs (without echoing).

1.0.1 (03/04/2012)

  • Images and donators list included (no longer remotely loaded).

1.0 (26/03/2012)

  • Initial release.