Read below about related content about wordpress+rss+feed+length, You can contact us to improve our contents and site quality

Read below about related content about wordpress+rss+feed+length, You can contact us to improve our contents and site quality

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

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

WordPress Plugin: My Snippets

December 22nd, 2009 By WP Tricks Posted in Plugins

The idea for this plugins, is Widget Logic WordPress Plugin, on My Snippet WordPress Plugin (develop by Justin Tadlock) give extra content on your post. Example we can add Featured Video on current content and many more.

How the plugin works

First, you’d add the Snippet widget to the widget area of your choosing. You’ll need that to display your custom snippets.

When writing a post (or page), you’ll have an extra meta box labeled Snippet Post Settings. In this box, you can add text, HTML, and shortcodes.

Download the plugin

Before using the plugin, please take a moment to read through the readme.html file included with the plugin download. You can download this plugin from WordPress.org

Amazing Touch

How To Display WordPress Permalinks Outside of the Loop

February 14th, 2010 By WP Tricks Posted in Tips

The most easy method to display your permalink content in WordPress is using simply code. Because for some reason, we need to display Permalinks Outside our Standard WordPress Loop.

It’s can be done in WordPress with easily steps, just write down this code below in your theme files Outside your WordPress Look

<!-- external permalink via post ID -->
<a href="<?php echo get_permalink(33); ?>" >Permalink</a>

<!-- external permalink via global $post variable -->
<a href="<?php echo get_permalink($post->ID); ?>" >Permalink</a>

Read the rest of this entry »

Amazing Touch

Tutorial To Display a Different Number of Post on Search Result

April 26th, 2010 By WP Tricks Posted in Tricks

Did you know that, WordPress search result have the same number of post with original WordPress loop, you can check your setting on Settings » Reading » Blog pages show at most. But for some reason, we need to show big result that ordinary loop did. How to do it? we only need to create query post something like this

<?php query_posts($query_string . '&showposts=10'); ?>

Display a Different Number of Post on  WordPress

Display a Different Number of Post on WordPress


Read the rest of this entry »

Amazing Touch