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

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

How To Add Author’s Twitter and Facebook Info

November 26th, 2010 By WP Tricks Posted in Tips

Using WordPress, we can added new field to our author info more easily. Example we want to add Author’s Twitter and Facebook on the Author Profile.

Added Author's Twitter and Facebook - Batman Cupcakes

Added Author's Twitter and Facebook - Batman Cupcakes

We only needed to added extra function and added to the WordPress Author Profile using add_filter method. Read the rest of this entry »

Amazing Touch

Enable Shortlink in WordPress 3.0

May 2nd, 2010 By WP Tricks Posted in Tips

WordPress 3.0 built in with many many new featured, Integrated WordPress MU, New WordPress 3.0 Nav Menu, New Default Theme and many more. Shorlink feature is another nicely feature in WordPress 3.0. Default WordPress 3.0 shortink on you header front end will be come like this , but if you are using WordPress Stats, you’ll have WP.ME integration shortlink.

Enable WordPress Shortlink - Lizzy Caplan

Enable WordPress Shortlink - Lizzy Caplan

How to integrate Shortlink on our themes? You can use with 4 parameters

* @param string $text Optional The link text or HTML to be displayed.  Defaults to 'This is the short link.'
 * @param string $title Optional The tooltip for the link.  Must be sanitized.  Defaults to the sanitized post title.
 * @param string $before Optional HTML to display before the link.
 * @param string $before Optional HTML to display after the link.
 */
the_shortlink($text = '', $title = '', $before = '', $after = '')

Read the rest of this entry »

Amazing Touch

How to manage post as register member only

May 12th, 2011 By andi Posted in Tricks

You may already be familiar with membership WordPress plugins or a similar plugin. Usually people has something to shared with registered member suppose they give more information or features for some members. This trick can be But this we can do yourself without using the plugin. As explained by justintadlock, we can create own functions in functions.php file. The way is easy, open the functions.php file and then copy and paste the following function into the functions.php file.

function member_check_shortcode( $atts, $content = null ) {
	 if ( ( !is_user_logged_in() && !is_null( $content ) ) || is_feed() )
		return $content;
	return '';
}
add_shortcode( 'member', 'member_check_shortcode' );

How to use it is like this:

[visitor]

Some content for the people just browsing your site.

[/visitor]

You can use this function wherever you are in the blog. You can limit it to a few sentences or a whole article.

How To Disallow theme switching

April 28th, 2010 By WP Tricks Posted in Tricks

For some reason we need to Disallow theme switching in WordPress, why we need disable this featured? There are some reason why we should do it, such as Our WordPress powered site is Final Version, so we didn’t need to change the theme. Or The client “explored” the WordPress dashboard and “accidentally” switched the theme.

Disallow Theme Switcing WordPress

Disallow Theme Switcing WordPress


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 »