Archive for the ‘WordPress Tricks’ Category

 
 

Download YouSayToo auto-publishing plugin

Posted 03 Dec 2011 — by herman
Category WordPress Plugins, WordPress Tricks

You may increase you visitor by build backlink and make many publishing. One of the way may you have to add backlink on YouSayToo. Have you account on YouSayToo?. Now you may do auto-publishing plugin and backlink on your account with YouSayToo auto Publishing plugin on WordPress. Hm.. thats very nice plugin to use because you don’t need to sign in on your account if you only want to add whatvere you post on your blog. You just need to write on your post without need to add backlink on YouSayToo.

YouSayToo auto-publishing plugin and backlink all in one. It will automatically publish your posts in your YouSayToo account with credits to your blog. No changing of the blog feed settings required. Your blog needs to be added to YouSayToo in order for the plugin to work.

Download Here and Register Here if you don’t have account

How To Change Search URL on WordPress

Posted 19 Sep 2011 — by WPGPL Team
Category WordPress Tricks

We already know that WordPress Search URL is http://wpgpl.com/search/keyword right? Now we got nicely tips and we will show you how to change this search URL permalink. This tips coming from Andrew Keith. You need to paste this code on functions.php to make it works.

Open your functions.php on your theme and add this code

function custom_search_url( $search_rewrite ) {
if( !is_array( $search_rewrite ) ) { return $search_rewrite; }

$new_array = array();
foreach( $search_rewrite as $pattern => $s_query_string ) {
$new_array[ str_replace( 'search/', 'new-search-url/', $pattern ) ] = $s_query_string;
}
$search_rewrite = $new_array;
unset( $new_array );
return $search_rewrite;
}
add_filter("search_rewrite_rules", "custom_search_url");

Please notes this code didn’t redirect any /?s=Search but this code will redirect any /search/ into something else domain. We hope this tutorial to change search URL on WordPress worked on you

How To Implementing a Simple Print Stylesheet on WordPress Theme

Posted 07 Sep 2011 — by WPGPL Team
Category WordPress Tricks

There are a time for some our reader needed to print our content. So Implementing a Print Stylesheet on WordPress Theme is the best idea. We will show you how to do it. So you blog reader will be happy with your content and of course your blogs.

You need to open your header.php and modified some parameter on it, let’s move on. After header.php already opened. Find this line

< link rel="stylesheet" type="text/css" media="screen" href="<?php bloginfo( 'stylesheet_url' ); ?>" />

And modified that code by added print code like this one

< link rel="stylesheet" type="text/css" media="screen,print" href="<?php bloginfo( 'stylesheet_url' ); ?>" />

Read the rest of this entry »

WP Tutorual: Rename a WordPress Post Format

Posted 24 Aug 2011 — by WPGPL Team
Category WordPress Tricks

WPMU.org has been introduced wonderful ways about How to Quickly Rename a WordPress Post Format. You can follow the step on WPMU.org about the details how to do it.

Please note you will need text editor, because you will needed to edit and added some function on your functions.php in your current theme. Check it out

How To Fix TimThumb Script Vulnerability

Posted 18 Aug 2011 — by WPGPL Team
Category WordPress Tricks

Like we all know, TimThumb Scrip have a bugs or vulnerability that made our WordPress Themes insecure. To fix this problem is simple, all need to do is update your TimThumb script on your themes or plugin to the latest version of this script. You can download an update TimThumb Script on this url

That’s it, now you TimThumb script has been fixed and you can continued using it without any worries. We hope this tricks is useful and happy blogging

Tutorial Enable Google’s Social Interaction Analytics for Your WordPress Site

Posted 11 Aug 2011 — by WPGPL Team
Category WordPress Tricks

Like we all know, Google has a new toy, Google+ Social Network Application that try to give something different what Facebook has been made.

Before Google+ launches, Google Already introducing +1, another service to interact user and their search result. More details instruction how to Integrate Google’s Social Interaction Analytics is easy. You can read more details here before you decide to move on. And you can began to implemented it using Google Sample Analytics code on this page

How To Add a login/logout link to Your Navigation Menu

Posted 25 Jan 2011 — by WPGPL Team
Category WordPress Tricks

New WordPress 3 Menus is Awesome feature, I really like it, using WordPress Navigation Menu, we can create more sophisticated menu ever seen. We can arrange our menu more easily and many more. Now we will share How To Add a login/logout link to your navigation menu.

You need to write this code on your functions.php and the login/logout link will be automatically added on your WordPress Menu Navigation

add_filter('wp_nav_menu_items', 'add_login_logout_link', 10, 2);
function add_login_logout_link($items, $args) {

		ob_start();
		wp_loginout('index.php');
		$loginoutlink = ob_get_contents();
		ob_end_clean();

		$items .= '<li>'. $loginoutlink .'</li>';

	return $items;
}

Read the rest of this entry »

How To Create Dynamically Search Categories and Child Categories Only Form

Posted 14 Dec 2010 — by WPGPL Team
Category WordPress Tricks

Using WordPress there are unlimited abilites, all you can do on WordPress. Today WordPress Tutorial is How To Create Dynamically Search Categories and Child Categories Only Form.

There are some problem or litle bit hack to create custom WordPress, example we want to create search form only on spesify categories. Using This code below you can do it easely. Read the rest of this entry »

How To Fix WordPress Problem Upgrading

Posted 09 Aug 2010 — by WPGPL Team
Category WordPress Tricks

Many WordPress users got terrible probem if using Automatic Updated features. Right know I will show you How To Fix WordPress Problem Upgrading Plugins, Theme’s or Core Updates, in commons cases, the problems is cause by File and Folder permissions, others case because some plugin need to be deactivated before upgrade or maybe you need to clear you upgrades folder on your wp-content directory. Read the rest of this entry »

Fix Readfile Problem on TimThumb Script

Posted 10 Apr 2010 — by WPGPL Team
Category WordPress Tricks

Fix Readfile TimThumb ProblemDid you know, some of our GPL WordPress Theme created using TimThumb to generated better thumbnail for the WordPress Content. The scripts have some problem on some server. Such as this script need to have abilities to created / recreate some cache in our server. The other big problem is Readfile functions. On some server this server is disabled for security reason.

After we googling, I found the easy solution to fix Readfile problem. WP Tricks coverage this problem and how to fix it. So if you server have some problem about Readfile you can go to the site and began fix readfile on TimThumb and began edit your current TimThumb to make it work.