bugfix
This commit is contained in:
parent
dd96c39d8d
commit
0e4080919a
|
@ -3,7 +3,7 @@
|
||||||
Plugin Name: Extended Table of Contents (with nextpage support)
|
Plugin Name: Extended Table of Contents (with nextpage support)
|
||||||
Plugin URI: http://www.happybooking.de/wordpress/plugins/extended-toc
|
Plugin URI: http://www.happybooking.de/wordpress/plugins/extended-toc
|
||||||
Description: This plugin automatically generates and inserts a table of contents (ToC) to your pages and posts, based on tags h1-h6. Whenever the plugin discovers more than a certain amount of headings (default: 3) the ToC is inserted at the top of the page. This plugin also can handle posts that are divided into pages by the nextpage-wordpress-tag. Any feedback or suggestions are welcome.
|
Description: This plugin automatically generates and inserts a table of contents (ToC) to your pages and posts, based on tags h1-h6. Whenever the plugin discovers more than a certain amount of headings (default: 3) the ToC is inserted at the top of the page. This plugin also can handle posts that are divided into pages by the nextpage-wordpress-tag. Any feedback or suggestions are welcome.
|
||||||
Version: 0.9.0
|
Version: 0.9.1
|
||||||
Author: Daniel Boldura, HappyBooking UG
|
Author: Daniel Boldura, HappyBooking UG
|
||||||
Author URI: http://www.happybooking.de/
|
Author URI: http://www.happybooking.de/
|
||||||
|
|
||||||
|
@ -25,7 +25,7 @@ Author URI: http://www.happybooking.de/
|
||||||
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||||
*/
|
*/
|
||||||
|
|
||||||
define( 'EXTENDED_TOC_VERSION', '0.9.0' );
|
define( 'EXTENDED_TOC_VERSION', '0.9.1' );
|
||||||
define( 'EXTENDED_TOC_ID', 'extended_toc' );
|
define( 'EXTENDED_TOC_ID', 'extended_toc' );
|
||||||
define( 'EXTENDED_TOC_NAME', 'Extended-ToC' );
|
define( 'EXTENDED_TOC_NAME', 'Extended-ToC' );
|
||||||
define( 'TOC_MIN_START', 2 );
|
define( 'TOC_MIN_START', 2 );
|
||||||
|
@ -317,7 +317,7 @@ if( !class_exists('ExToC') ) {
|
||||||
if( isset($atts[0]['notitle']) )
|
if( isset($atts[0]['notitle']) )
|
||||||
$this->options['show_heading_text'] = false;
|
$this->options['show_heading_text'] = false;
|
||||||
|
|
||||||
if ( !is_search() && !is_archive() && !is_feed() )
|
if( is_single() ) // !is_search() && !is_archive() && !is_feed() )
|
||||||
return '[extoc]';
|
return '[extoc]';
|
||||||
else
|
else
|
||||||
return;
|
return;
|
||||||
|
|
|
@ -40,6 +40,9 @@ You can change the default settings and more under Plugins > Extended-ToC
|
||||||
If you have any questions or suggestions please contact us at any time: support@happybooking.de or http://www.happybooking.de/
|
If you have any questions or suggestions please contact us at any time: support@happybooking.de or http://www.happybooking.de/
|
||||||
|
|
||||||
== Changelog ==
|
== Changelog ==
|
||||||
|
= 0.9.1 =
|
||||||
|
* little bugfix within markup
|
||||||
|
|
||||||
= 0.9.0 =
|
= 0.9.0 =
|
||||||
* Added markups [extoc] [noextoc]
|
* Added markups [extoc] [noextoc]
|
||||||
* Inidivual settings within markup per post/page
|
* Inidivual settings within markup per post/page
|
||||||
|
|
Loading…
Reference in New Issue