Posts Tagged Wp
Custom registration page
Posted by in Wordpress on August 8th, 2011
If you want to create custom registration page on your wordpress blog, here are the steps:
- Add a redirect to your htaccess file RewriteRule ^wp-signup\.php(.*)$ wp-content/themes/your-theme-folder/wp-signup.php$1
- Copy wp-signup.php from your wordpress root folder to your theme folder
- You can edit wp-signup.php in your theme folder
- If you need to add new action after user register you can add another redirect RewriteRule ^wp-activate\.php(.*)$ wp-content/themes/your-theme-folder/wp-activate.php$1
Cloud Tag at wordpress
Posted by in Wordpress on July 8th, 2009
The syntax for wordpress cloud tag is :
<?php wp_tag_cloud( $args ); ?>
You can pass the following arguments to the function:
- ‘smallest’
- ‘largest’
- ‘unit’
- ‘number’
- ‘orderby’
The sample code are:
<?php wp_tag_cloud(‘smallest=8&largest=22′); ?>
<?php wp_tag_cloud(‘smallest=8&largest=22&number=40′); ?>
<?php wp_tag_cloud(‘smallest=8&largest=22&number=40′); ?>









