Plugin Directory

Changeset 1741772


Ignore:
Timestamp:
10/05/2017 05:15:13 PM (8 years ago)
Author:
postpostmodern
Message:

update to 1.0.1

Location:
taxonomy-taxi/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • taxonomy-taxi/trunk/_plugin.php

    r1688542 r1741772  
    44*   Plugin URI:     http://wordpress.org/plugins/taxonomy-taxi/
    55*   Description:    Show custom taxonomies in /wp-admin/edit.php automatically
    6 *   Version:        1.0.0
     6*   Version:        1.0.1
    77*   Author:         postpostmodern, pinecone-dot-website
    88*   Author URI:     http://rack.and.pinecone.website
  • taxonomy-taxi/trunk/lib/Taxonomy_Taxi/Settings_Page.php

    r1688501 r1741772  
    1313        add_settings_section(
    1414            'taxonomy_taxi_settings_section',
    15             'Taxonomy Taxi',
     15            '', // subhead
    1616            __CLASS__.'::description',
    1717            'taxonomy_taxi'
     
    3636        register_setting( 'taxonomy_taxi', 'taxonomy_taxi', __CLASS__.'::save' );
    3737
    38         add_options_page( 'Taxonomy Taxi', 'Taxonomy Taxi', 'manage_options', 'taxonomy_taxi', __CLASS__.'::render_settings_page' );
     38        add_options_page(
     39            'Taxonomy Taxi',
     40            'Taxonomy Taxi',
     41            'manage_options',
     42            'taxonomy_taxi',
     43            __CLASS__.'::render_settings_page'
     44        );
    3945    }
    4046
     
    5662    public static function description()
    5763    {
    58         echo sprintf( 'version %s', version() );
     64        echo sprintf( '<pre>%s</pre>', version() );
    5965    }
    6066
  • taxonomy-taxi/trunk/views/admin/options-general.php

    r1564588 r1741772  
    1 <form class="taxonomy-taxi" method="POST" action="options.php">
    2     <?php
    3     settings_fields( 'taxonomy_taxi' );
    4     do_settings_sections( 'taxonomy_taxi' );
    5     submit_button();
    6     ?>
    7 </form>
     1<div class="wrap">
     2    <h2>Taxonomy Taxi</h2>
     3    <form class="taxonomy-taxi" method="POST" action="options.php">
     4        <?php
     5        settings_fields( 'taxonomy_taxi' );
     6        do_settings_sections( 'taxonomy_taxi' );
     7        submit_button();
     8        ?>
     9    </form>
     10</div>
  • taxonomy-taxi/trunk/views/admin/options-general_footer.php

    r1564588 r1741772  
    11Taxonomy Taxi version <?php echo $version; ?>
    2 by <a href="http://rack.and.pinecone.website/">Rack and Pinecone</a> &middot;
     2by <a href="https://rack.and.pinecone.website/">Rack and Pinecone</a> &middot;
    33<a href="https://wordpress.org/support/plugin/taxonomy-taxi">Support</a> &middot;
    44<a href="https://cash.me/$EricEaglstun">Donate</a>
Note: See TracChangeset for help on using the changeset viewer.