Plugin Directory

Changeset 1675496


Ignore:
Timestamp:
06/10/2017 01:46:56 PM (9 years ago)
Author:
maurobringolf
Message:

Version 0.1.2

Location:
mnml-footnotes/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • mnml-footnotes/trunk/lib/class-mnml-version-check.php

    r1675304 r1675496  
    33 * PHP and WordPress version check
    44 *
    5  * @package minimal-footnotes
     5 * @package MNML_Footnotes
    66 */
    77
  • mnml-footnotes/trunk/mnml-footnotes.php

    r1675304 r1675496  
    33 * Plugin Name: MNML Footnotes
    44 * Description: Auto-listed footnotes for posts.
    5  * Version:     0.1.1
     5 * Version:     0.1.2
    66 * Author:      Mauro Bringolf
    77 * Author URI:  https://maurobringolf.ch
  • mnml-footnotes/trunk/readme.txt

    r1675304 r1675496  
    44Requires at least: 3.0
    55Tested up to: 4.8
    6 Stable tag: 0.1.1
     6Stable tag: 0.1.2
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    1313
    1414This plugin gives you a shortcode to make numbered references to footnotes, directly from your post content. Footnotes are listed and enumerated automatically at the end of your post
    15 content, reusing all existing styles of your site.
     15content, reusing all existing styles of your site. All references become anchor links guiding the user to the footnote section of the post.
    1616
    17 We would love to hear and discuss your feedback in a [review](https://wordpress.org/support/plugin/mnml-footnotes/reviews/).
     17We would love to hear and discuss your feedback in a [review](https://wordpress.org/support/plugin/mnml-footnotes/reviews/). If you want to report a bug or have a feature request, please do so via the [GitHub repository](https://github.com/maurobringolf/mnml-footnotes).
     18
     19== Usage ==
     20
     21To make a new footnote reference in your content you can use the shortcode **mnml_footnote** in the following way:
     22
     23*This is your regular post content and the shortcode by this plugin looks like this [mnml_footnote] Easy, right? [/mnml_footnote]*
     24
     25Everything inside the shortcode will be moved into a footnote and replaced by a numbered reference link to it. In this example the footnote content would be *"Easy, right?"*.
    1826
    1927== Installation ==
    2028
    21 1. Upload the plugin files to the '/wp-content/plugins/mnml-footnotes' directory, or install the plugin through the WordPress plugins screen directly.
    22 1. Activate the plugin through the 'Plugins' screen in WordPress.
     291. Upload the plugin files to the `/wp-content/plugins/mnml-footnotes` directory, or install the plugin through the WordPress plugins screen directly.
     30
     311. Activate the plugin through the **Plugins** area in WordPress.
     32
    23331. Start using the shortcode `[mnml_footnote]Your footnote reference here.[/mnml_footnote]` within your post content.
    24 1. Optionally, you can go to 'Settings->Writing' and add a title for your footnotes sections on posts.
     34
     351. Optionally, you can go to **Settings->Writing** and add a title for your footnotes sections on posts.
     36
     37== Screenshots ==
     381. Examples of footnote references taken from [maurobringolf.ch](https://maurobringolf.ch).
    2539
    2640== Changelog ==
     41
     42= v0.1.2 =
     43* A sketch of another shortcode was removed in favor of simplicity for now. Nothing changes though, the shortcode for
     44footnote references works exactly the same way as before.
    2745
    2846= v0.1.1 =
  • mnml-footnotes/trunk/src/class-main.php

    r1675304 r1675496  
    6363
    6464        $this->prefix = 'mnml-footnotes';
    65         $this->version = '0.1.1';
     65        $this->version = '0.1.2';
    6666        $this->file = $file;
    6767        $this->settings = new Settings();
     
    109109    public function register_shortcodes() {
    110110        add_shortcode( 'mnml_footnote', array( $this->shortcodes, 'footnote_reference' ) );
    111         add_shortcode( 'mnml_footnotes', array( $this->shortcodes, 'footnote_list' ) );
    112111    }
    113112
Note: See TracChangeset for help on using the changeset viewer.