Version 1.0.2
* New setting to collapse the reference container by default * Added link behind the footnotes to automatically jump to the reference container * New function to easy output input fields for the settings page * Updated translation for the new setting git-svn-id: https://plugins.svn.wordpress.org/footnotes/trunk@917811 b8457f37-d9ea-0310-8a92-e5e31aec5664
This commit is contained in:
parent
2e8614908f
commit
ab368ba787
16 changed files with 655 additions and 60 deletions
|
@ -4,13 +4,13 @@
|
|||
Plugin URI: http://www.herndler.org
|
||||
Description: simple adding footnotes to your pages
|
||||
Author: Mark Cheret, Stefan Herndler
|
||||
Version: 1.0.1
|
||||
Version: 1.0.2
|
||||
Author URI: http://www.cheret.de
|
||||
Text Domain: footnotes
|
||||
Domain Path: /languages
|
||||
*/
|
||||
/*
|
||||
Copyright 2014 Mark Cheret, Stefan Herndler (email : mark@cheret.de | admin@herndler.org)
|
||||
Copyright 2014 Mark Cheret, Stefan Herndler (email : mark@cheret.de | support@herndler.org)
|
||||
|
||||
This program is free software; you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License, version 3, as
|
||||
|
@ -69,9 +69,9 @@ if ( !function_exists( 'is_admin' ) ) {
|
|||
}
|
||||
|
||||
/* require plugin class */
|
||||
require_once( dirname( __FILE__ ) . "/classes/footnote.php" );
|
||||
require_once( dirname( __FILE__ ) . "/classes/footnotes.php" );
|
||||
/* require plugin settings class */
|
||||
require_once( dirname( __FILE__ ) . "/classes/footnote_settings.php" );
|
||||
require_once( dirname( __FILE__ ) . "/classes/footnotes_settings.php" );
|
||||
|
||||
/* action to locate language and load the wordpress-specific language file */
|
||||
add_action( 'plugins_loaded', 'footnotes_load_language' );
|
||||
|
|
Reference in a new issue