Read below about related content about wp+tricks, You can contact us to improve our contents and site quality

Two Become One: StudioPress and CopyBlogger LLC.

September 1st, 2010 By WP Tricks Posted in News

I got this update from WP Candy, StudioPress the first released Premium Theme I ever know merger with CopyBlogger LLC.  This is what Brian Gardner has said

I wanted to let you know what’s going on before rumors started floating around. There will be an announcement next week on Copyblogger with more details. You’ll find that this new combined company will allow for better updates to Genesis, more child themes, additional add-on features, and better support.

Read the rest of this entry »

Amazing Touch

Custom Post Type Tutorial Collections

August 27th, 2010 By WP Tricks Posted in Tips

We will show you many Custom Post Type Tutorial Collections from many website, we hope this list will make it more easier for you to understanding new feature on WordPress 3.0

WordPress Custom Post Type -Adriana Lima Victorias Secret Toronto

WordPress Custom Post Type -Adriana Lima Victorias Secret Toronto

If you read each of this tutorial, you’ll understand that WordPress 3.0 more easier to create robust CMS with this tricks. We hope this Custom Post Type Tutorials useful for you project

Photos Egotastic

Amazing Touch

How To Integrate Images Shortcode with TimTumb

August 24th, 2010 By WP Tricks Posted in Tricks

Every WordPress Developer has seen that TimTumb is wonderful script, This script is better handle to resize image on the fly and display it what ever size we want and we need. Let’s me show you How To Integrate Images Shortcode with TimTumb. The idea is simple. We will use the power of TimThumb and generated better thumbnail and added in our content using shorcode. We got this tricks from Free WordPress Themes designer.

Images Shortcode with TimThumb - Lucy Pinder Nuts August 2010 Photo

Images Shortcode with TimThumb - Lucy Pinder Nuts August 2010 Photo


Read the rest of this entry »

Amazing Touch

Enhanced Your WordPress Authentication

August 21st, 2010 By WP Tricks Posted in Tips

How To Enhancer Your WordPress authentication and added better handled and criteria. John Kolbert, one of WordPress developer create some tutorial how to do it. On this tutorial John Kolbert try to added same parameter and made own criteria…

WordPress Authentication - Miranda Kerr Black Leather

WordPress Authentication - Miranda Kerr Black Leather

John using add_filter method to create it. He tweak original function of wp_authenticate. On this example John add new parameter that will denied username bob.
Read the rest of this entry »

Amazing Touch

How To Increasing memory allocate on WordPress

August 16th, 2010 By WP Tricks Posted in Tricks

WP_MEMORY_LIMIT is new options introducing in WordPress 2.5 and newer. This setting increases PHP Memory for WordPress, not other applications.

Increasing memory allocate - Rachel-Bilson in Style UK

Increasing memory allocate - Rachel-Bilson in Style UK

Default Setting, WordPress will trying to Increase Memory into 32M By default, WordPress will attempt to increase memory allocated to PHP to 32MB, so the best ways change the setting more than 32MB on your wp-config.php. How To Increasing memory allocate on WordPress is simple, open your wp-config.php and added this line

define('WP_MEMORY_LIMIT', '64M');

Read the rest of this entry »

Amazing Touch

Replace jQuery of WordPress with Google AJAX Library

August 13th, 2010 By WP Tricks Posted in Tricks

I will show you little code How To Replace jQuery of WordPress in your Theme with Google AJAX Library, like we all know, WordPress has built in a lot of JavaScript Framework included jQuery, but for some reason such as Sever Speed or better handling, we need replace original jQuery for WordPress and using Google AJAX Library.

Replace jQuery of WordPress - Shakira Cleverage Photo

Replace jQuery of WordPress - Shakira Cleverage Photo

To use this featured is simple, we need put some code in our functions.php and your WordPress will use Google AJAX Library. Let’s get started

function jQuery_Google_init() {
	if ( !is_admin() ) { // actually not necessary, because the Hook only get used in the Theme
		wp_deregister_script( 'jquery' ); // unregistered key jQuery
		wp_register_script( 'jquery', 'http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js', false, '1.4.2'); // register key jQuery with URL of Google CDN
		wp_enqueue_script( 'jquery' ); // include jQuery
	}
}
// For Themes since WordPress 3.0
add_action( 'after_setup_theme', 'jQuery_Google_init' ); // Theme active, include function

Read the rest of this entry »

Amazing Touch


Page 1 of 131234510...Last »