Tag Archives: Wp

Google caffeine, silo structure & wp silo plugin

Another great video from Sid, Stan & Silo, about Google Caffeine, The Importance of a Silo Structure For Your WordPress Blog and the WordPress Silo Plugin….

Customizing a Child Theme

Overview Before we start it’s important that you understand what a child theme is. Read this guide from the WordPress Codex and also read a great explanation on the topic in this tutorial. For a quick overview, have a look at this screencast: Getting Started To get started we need to prepare a child theme [...]

htaccess Code for WordPress Multisite

For the upcoming Digging into WordPress update for WordPress 3.0, I have been working with WordPress’ multisite functionality. Prior to version 3.0, WordPress came in two flavors: “original” and “multisite” (MU). Most designers probably work with regular, one-blog installations of “regular” WordPress. The htaccess rules for all single-blog installations of WordPress haven’t changed. They are [...]

How to setup your wordpress ecommerce site

natebrooksworld.com is where to get the How to Setup Your WordPress Ecommerce Site using Authorize.Net. Nate shares the lessons learned in the trenches so you can SAVE HOURS and HOURS of frustration and troubleshooting. If you value your time, you’ll get this time saving ebook…learn exactly how to do it…step by step and in the [...]

Matt: Bezos Interview

JP Mangalindan interviews Jeff Bezos for Fortune. (WP.com-hosted article.) Original post by Matt

WordPress.tv: Dan Milward: WP E-Commerce

Original post by Ryan Markel

How to programatically remove WordPress dashboard widgets

Simply paste the following into your functions.php file. The code will remove all dashboard widgets, so you should comment lines related to wigets you’d like to keep. function remove_dashboard_widgets() { global $wp_meta_boxes; unset($wp_meta_boxes['dashboard']['side']['core']['dashboard_quick_press']); unset($wp_meta_boxes['dashboard']['normal']['core']['dashboard_incoming_links']); unset($wp_meta_boxes['dashboard']['normal']['core']['dashboard_right_now']); unset($wp_meta_boxes['dashboard']['normal']['core']['dashboard_plugins']); unset($wp_meta_boxes['dashboard']['normal']['core']['dashboard_recent_drafts']); unset($wp_meta_boxes['dashboard']['normal']['core']['dashboard_recent_comments']); unset($wp_meta_boxes['dashboard']['side']['core']['dashboard_primary']); unset($wp_meta_boxes['dashboard']['side']['core']['dashboard_secondary']); } if (!current_user_can('manage_options')) { add_action('wp_dashboard_setup', 'remove_dashboard_widgets' ); } Thanks to NoScope for this code! By [...]

Matt: Top Referrers

The WP Dev blog got a ton of traffic today because of the 3.0 release announcement. Here are the top referrers: WordPress Dashboard, Twitter, Slashdot (huh?), Digg, news.ycombinator, Lifehacker, Google Reader, Reddit. So far today Slashdot is ahead of Twitter. Didn’t realize they were even still around! They’ve got staying power. Original post by Matt

Tutorial wp – ep5. sezione utenti

Episodio dedicato alla gestione degli Utenti da parte di WordPress. Buona Visione!!! PS: Visitate pinguinovolante.altervista.org…

How to automatically create a custom field when a post is published

Paste the code below into your functions.php file. The only thing you have to do is to edit the cutsom field name on line 6. add_action(‘publish_page’, ‘add_custom_field_automatically’); add_action(‘publish_post’, ‘add_custom_field_automatically’); function add_custom_field_automatically($post_ID) { global $wpdb; if(!wp_is_post_revision($post_ID)) { add_post_meta($post_ID, ‘field-name’, ‘custom value’, true); } } Thanks to wpCanyon for this cool tip! Looking for WordPress hosting? Try [...]

Powered by Yahoo! Answers