Skip to main content

Home/ Wordpress/ Contents contributed and discussions participated by JR Oakes

Contents contributed and discussions participated by JR Oakes

JR Oakes

WordPress Quick Tips #3:Adding a Shortcode to a Sidebar Widget - 7 views

  •  
    Add shortcode ability to widgets bu placing this in functions.php: add_filter('widget_text', 'do_shortcode');
JR Oakes

Ultimate Guide to Roles and Capabilities | Gary Cao - 8 views

  •  
    Great article on user roles and capabilities for Wordpress
JR Oakes

Build a Client Development site with WordpressMU | Pro Blog Design - 9 views

  •  
    Client development site.  Recommended Plugins
JR Oakes

WordPress Caching: What's the best Caching Plugin? | Tutorial9 - 6 views

  •  
    Great tutorial on Caching plugins.
JR Oakes

Shun the Plugin: 100 WordPress Code Snippets from Across the Net | WordPress, Multisite... - 16 views

  •  
    Great Code examples 
JR Oakes

How to remove menus in WordPress dashboard - 6 views

  • function remove_menus () { global $menu; $restricted = array(__('Dashboard'), __('Posts'), __('Media'), __('Links'), __('Pages'), __('Appearance'), __('Tools'), __('Users'), __('Settings'), __('Comments'), __('Plugins')); end ($menu); while (prev($menu)){ $value = explode(' ',$menu[key($menu)][0]); if(in_array($value[0] != NULL?$value[0]:"" , $restricted)){unset($menu[key($menu)]);} } } add_action('admin_menu', 'remove_menus');
  •  
    Remove Admin Menu Items
JR Oakes

Hosting Client Sites on a WordPress Network | Digging into WordPress - 5 views

  •  
    Hosting a Multi User network
JR Oakes

Wordpress - ThaiiS Note (Wiki) - 8 views

  •  
    Nice Wordpress guide
JR Oakes

Improving the Performance of your WordPress Site: Part 1 - 0 views

  • Optimising CSS & JavaScript With the above informatinon in mind aim to lower the amount of css and javascript files your theme has, for example include your reset.css in your style.css, and for wp-page-navi add it to your style.css too. Some plugins add css or JavaScript to your theme It’s a good idea to filter these files out and add them to your own style.css or a javascript file. Justin Tadlock has written a  useful guide on how to disable scripts and styles belonging to many plugins. http://justintadlock.com/archives/2009/08/06/how-to-disable-scripts-and-styles You can also minimise you css with CSS Drive’s CSS Compressor to lower your style sheets size by that extra bit. It all adds up!
JR Oakes

40 Useful jQuery Techniques and Tutorials for Great User Interface - 0 views

  •  
    Great collection of Jquery Ui examples to pimp out your WP theme
1 - 11 of 11
Showing 20 items per page