Changeset 390019
- Timestamp:
- 05/27/2011 09:48:53 PM (15 years ago)
- Location:
- subpage-navigation/trunk
- Files:
-
- 2 edited
-
readme.txt (modified) (3 diffs)
-
subpages-navigation.php (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
subpage-navigation/trunk/readme.txt
r373013 r390019 26 26 27 27 [1]: http://wordpress.org/extend/plugins/subpage-listing/ 28 [2]: http://wordpress.org/extend/plugins/subpage s-navigation/installation/28 [2]: http://wordpress.org/extend/plugins/subpage-navigation/installation/ 29 29 30 30 == Installation == … … 35 35 4. Enjoy! 36 36 37 Please note that you will likely have to tweak the CSS to make it work with your theme. You can do this by editing the subpages-navigation.css in your template directory and/or replacing image that shipped with the plugin. See the [styling guide][1] for details. We know that this is not optimal, but please understand that it is very difficult to come up with a default stylesheet that works se mmelessly across all themes. If you need help, please go to the WordPress forum.37 Please note that you will likely have to tweak the CSS to make it work with your theme. You can do this by editing the subpages-navigation.css in your template directory and/or replacing image that shipped with the plugin. See the [styling guide][1] for details. We know that this is not optimal, but please understand that it is very difficult to come up with a default stylesheet that works seamlessly across all themes. If you need help, please go to the WordPress forum. 38 38 39 39 if you add … … 57 57 58 58 == Change log == 59 59 60 = 1.1.1= 61 * bugfix: some of the js and css files were not loaded properly. 62 60 63 = 1.1 = 61 64 * If everything works for you you don't need to update. -
subpage-navigation/trunk/subpages-navigation.php
r370799 r390019 4 4 * Plugin URI: http://olt.ubc.ca 5 5 * Description: Create subpages navigation menu with sidebar widgets and shortcodes. 6 * Version: 1.1 6 * Version: 1.1.1 7 7 * Author: Enej Bajgoric / Godfrey Chan / Michael Ha / OLT 8 * Author URI: http:// olt.ubc.ca8 * Author URI: http://blogs.ubc.ca/ 9 9 * 10 10 * This program is distributed in the hope that it will be useful, … … 334 334 if (!is_admin()) { 335 335 if(SUBPAGE_NAVIGATION_SCRIPT) 336 wp_enqueue_script('subpages-navigation', plugins_url('/subpage s-navigation/subpages-navigation.js'), array('jquery'));336 wp_enqueue_script('subpages-navigation', plugins_url('/subpage-navigation/subpages-navigation.js'), array('jquery')); 337 337 338 338 if(SUBPAGE_NAVIGATION_STYLE){ … … 342 342 343 343 }else{ 344 wp_enqueue_style('subpages-navigation', plugins_url('/subpage s-navigation/subpages-navigation.css'));344 wp_enqueue_style('subpages-navigation', plugins_url('/subpage-navigation/subpage-navigation.css')); 345 345 } 346 346 } … … 353 353 add_action("admin_print_scripts-widgets.php","subpages_navigation_plugin_admin"); 354 354 function subpages_navigation_plugin_admin(){ 355 wp_enqueue_script('subpages-navigation-admin', plugins_url('/subpage s-navigation/subpages-navigation-admin.js'),array('jquery'));355 wp_enqueue_script('subpages-navigation-admin', plugins_url('/subpage-navigation/subpages-navigation-admin.js'),array('jquery')); 356 356 357 357 }
Note: See TracChangeset
for help on using the changeset viewer.