Tuesday, November 22, 2016
How To Get Next 10 Items In Wordpress Blog Post Feed
How To Get Next 10 Items In Wordpress Blog Post Feed


If you have anything to say or ask, Kindly make use of the comment form below. If you also want me to post a short review of your company or product, on this blog, do not hesitate to contact me.
Please, do not forget to SUBSCRIBE to this blog, so that you can be receiving future articles, freebies DIRECTLY into your email inbox, even when you are not online.
CLICK HERE TO SUBSCRIBE NOW!
Cheers!
Go to link Download
Wednesday, October 26, 2016
How to Make Popular Post in Wordpress
How to Make Popular Post in Wordpress
How to Make Popular Post in Wordpress - Popular post is a widget that can give some information about the popular article in your blog. and the visitor often like tu read the article that very popular because that article is the very interesting. to make popular post in wordpress is very easy, lets follow the AA Tech steps.
![]() |
| How to Make Popular Post in Wordpress |
this is some steps to make popular post:
=> install the WordPress Popular Posts plugin.
=> open sidebar.php in your template
=> Submit code
<ul><?php get_mostpopular("range=daily&limit=10"); ?></ul> in your sidebar=> Range:
- daily: Popular Post today,
- weekly: Popular Post this week,
- monthly: Popular Post this month,
- yearly: Popular Post this year.
Limit: max article that show.
=> save your template
ok, now you had been make popular post, and I hope you can see the popular post in your blog. thanks
Go to link Download
Sunday, October 23, 2016
How to Change a Wordpress Logo in Login Page
How to Change a Wordpress Logo in Login Page
How to Change a Wordpress Logo in Login Page - I want to share a trick for wordpress. this trick is How to Change a Wordpress Logo in Login Page which can make your wordpress become more interesting.
You can to Change Wordpress logo, you can to put your photo or other picture in wordpress login page.. You want to try this??
This is the secret, First open the functions.php file, and copy this code:
function custom_loginlogo() {
echo <style type=text/css>
h1 a {background-image: url(.get_bloginfo(template_directory)./images/login_logo.png) !important; }
</style>;
}
add_action(login_head, custom_loginlogo);
dont forget to copy logo file to image folder at your theme, and adjust the logo file name.. for example the name login_logo.png.
Ok, I hope you become more cool with the new logo..
Go to link Download
Sunday, September 25, 2016
How to Make Random Post in Wordpress
How to Make Random Post in Wordpress
How to Make Random Post in Wordpress - random post is a widget that show some post with random article, this is step to showed to visitor the article maybe they need it. today AA Tech will explain for you how to make random post in wordpress.
| How to Make Random Post in Wordpress |
to make random post in wordpress, you can follow this step:
=> login to your account
=> open sidebar.php in your template
=> submit this code:
<ul><?php $rand_posts = get_posts(numberposts=5&orderby=rand); foreach( $rand_posts as $post ) :
?><li><a href=<?php the_permalink(); ?>><?php the_title(); ?></a></li><?php endforeach; ?></ul>
=> note: Numberposts: max article that show
=> save your template.
ok finished, now you can see the random post in your blog, thank you because you read this article. you can see article "How to make Recent Post in Wordpress" and "How to Make Popular Post in Wordpress". that is my article before posted this article.
Go to link Download
Tuesday, September 13, 2016
How To Add Default Featured Image To WordPress Posts and Categories
How To Add Default Featured Image To WordPress Posts and Categories
If you publish a post without setting a featured image, an empty box will be displayed next to the post if your WordPress theme supports featured image and has no fallback option.
If you wont want the empty box to be displayed, then you need to set a default fallback image when no featured image is found. This can also be very useful when you forget to set a featured image for your post.
In this article, I will show you how to add a default featured image in WordPress using a plugin.
First thing you need to do is install and activate the Default Featured Image plugin.
Once installed and activated, the plugin adds an option under Settings » Media to choose a default image.

Upload your default image and save settings. This image could be any image, for example an image of your site logo on a plain background.
That’s all.
Now, when your theme looks for a featured image and does not find one, it will display the default image.
If you would like to set a fallback Featured Image based on post category, using this same plugin, read the conditional featured images tutorial.
I hope this helps.
Go to link Download
Friday, September 2, 2016
How To Move A WordPress Site From LocalHost WAMP to Internet
How To Move A WordPress Site From LocalHost WAMP to Internet
Changing URL
Backing up and Restoring the WordPress Files
Uploading to Server
- Must Read: How to Create an FTP account on cPanel.
- How To Upload Files to Web Host server via FTP using Filezilla.
Backing Up and Restoring the WordPress Database
Creating and Importing the Database into your webserver
Connecting WordPress To New Database
Go to link Download
