Changeset 1741772
- Timestamp:
- 10/05/2017 05:15:13 PM (8 years ago)
- Location:
- taxonomy-taxi/trunk
- Files:
-
- 4 edited
-
_plugin.php (modified) (1 diff)
-
lib/Taxonomy_Taxi/Settings_Page.php (modified) (3 diffs)
-
views/admin/options-general.php (modified) (1 diff)
-
views/admin/options-general_footer.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
taxonomy-taxi/trunk/_plugin.php
r1688542 r1741772 4 4 * Plugin URI: http://wordpress.org/plugins/taxonomy-taxi/ 5 5 * Description: Show custom taxonomies in /wp-admin/edit.php automatically 6 * Version: 1.0. 06 * Version: 1.0.1 7 7 * Author: postpostmodern, pinecone-dot-website 8 8 * Author URI: http://rack.and.pinecone.website -
taxonomy-taxi/trunk/lib/Taxonomy_Taxi/Settings_Page.php
r1688501 r1741772 13 13 add_settings_section( 14 14 'taxonomy_taxi_settings_section', 15 ' Taxonomy Taxi',15 '', // subhead 16 16 __CLASS__.'::description', 17 17 'taxonomy_taxi' … … 36 36 register_setting( 'taxonomy_taxi', 'taxonomy_taxi', __CLASS__.'::save' ); 37 37 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 ); 39 45 } 40 46 … … 56 62 public static function description() 57 63 { 58 echo sprintf( ' version %s', version() );64 echo sprintf( '<pre>%s</pre>', version() ); 59 65 } 60 66 -
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 1 1 Taxonomy Taxi version <?php echo $version; ?> 2 by <a href="http ://rack.and.pinecone.website/">Rack and Pinecone</a> ·2 by <a href="https://rack.and.pinecone.website/">Rack and Pinecone</a> · 3 3 <a href="https://wordpress.org/support/plugin/taxonomy-taxi">Support</a> · 4 4 <a href="https://cash.me/$EricEaglstun">Donate</a>
Note: See TracChangeset
for help on using the changeset viewer.