Read below about related content about how+to+display+excerpt+in+wordpress+reduce+limit, You can contact us to improve our contents and site quality

Read below about related content about how+to+display+excerpt+in+wordpress+reduce+limit, You can contact us to improve our contents and site quality

Tutorial Enable HTML markup in user profiles

April 22nd, 2010 By WP Tricks Posted in Tricks

User profiles in WordPress is the perfect ways to display our information, such as website, Yahoo Messenger and many more. You can add some description about yourself on WordPress Profiles too.

The problem is, default WordPress Profiles descriptions fields is limited some HTML markup, this is not good. But with some tricks we can remove this and we can customizing profiles, so our user able to include a hyperlink, bold text, or some other HTML markup. By default, WordPress prevents this from happening, but you can easily enable it with this friendly little snippet on your theme functions.php

Enable HTML markup in user profiles

Enable HTML markup in user profiles


Read the rest of this entry »

Amazing Touch

How To Display Custom Content to Search Engine Visitors

February 18th, 2010 By WP Tricks Posted in Tips

Custom Search Engine ContentThere are so many WordPress blog, some of them added unique features, right now I will show you how to display custom content to Search Engine visitors only, You can replace what do you want to be added on Search Engine visitors, on this tricks only some example. Use you own creativity and create more unique WordPress site ever.

All need to do, only write down this code on your theme functions.php

<?php function yourare_fromasearchengine() {
	$ref = $_SERVER['HTTP_REFERER'];
	$SE  = array('/search?', 'images.google.', 'web.info.com', 'search.', 'del.icio.us/search', 'soso.com', '/search/', '.yahoo.');
	foreach($SE as $source) {
		if(strpos($ref, $source) !== false) return true;
	}
	return false;
} ?>

Read the rest of this entry »

Amazing Touch

How To Create “Dynamics Statics” Pages

May 6th, 2010 By WP Tricks Posted in Tricks

There are so many WordPress Tricks that we can apply. In our current section we will show you, how to create “Dynamics” “Statics” Pages in WordPress. That’s I mean on this point is simple. We will generated semi automatics pages using little bit query and custom field

Creating dynamic static  pages - Jessica Jane Clement

Creating dynamic static pages - Jessica Jane Clement

The first time we should to do is create Custom Page, it’s really simple, duplicate your page.php and give another name (example page-dynamics.php) and added on the top code

<?php /* Page Template: Dynamics Page */ ?>

Read the rest of this entry »

Amazing Touch

Added Custom Size on Your Post Thumbnails

August 3rd, 2010 By WP Tricks Posted in Tips

Chadcoleman created wonderful tutorials, how to added Custom Size Post Thumbnail. All we need to do only put some functions and use it whatever and whenever you want.

Custom Size Thumbnail - Avril Lavigne

Custom Size Thumbnail - Avril Lavigne

Added this code on your functions.php

if ( function_exists( 'add_theme_support' ) ) { // Added in 2.9
	add_theme_support( 'post-thumbnails' );
	set_post_thumbnail_size( 50, 50, true ); // Normal post thumbnails
	add_image_size( 'my-custom-size', 405, 180, true );
}

That it’s, you have new custom size for you thumbnail and you can call it with Post Thumbnail Tricks

Amazing Touch

The Best Way to Insert Custom Content into Feeds

March 21st, 2010 By WP Tricks Posted in Tricks

The Best Way to Insert Custom Content into FeedsMy Another Favorite featured in WordPress is easy to tweak it out. And WordPress good support on Feed. Sometime we need to insert custom content into our WordPress Feeds right? On this post I will show you how to Insert Custom Content into Feeds. The custom content can be anything – text, markup, or even scripts – and may be set to appear in blog posts, feed posts, or both. You can easily set content to display before or after your post content, or in both places

Write down this code to Insert Custom Content into Feeds

function doContent($content) {
$content = $content . '<p class="extra">Write Down your custom content here!</p>';
return $content;
}
add_filter('the_excerpt_rss', 'doContent');
add_filter('the_content_rss', 'doContent');

Read the rest of this entry »

Amazing Touch