Blogger Sitemap Page with CSS

Sitemap usually used to show all of our article post. At blogger you can create it by following below tutorial. Create a new page and name it Sitemap Change editor to HTML Mode and put…

Create Contact Me Page in Blogspot (Blogger)

Maybe you are learning about blogspot and want to create a contact us page. So, here is the simple tutorial for it. Create new page and give it a name: Contact us or Contact me….

WordPress SSL HTTPS Status

Still have problem with your wordpress SSL or HTTPS status? Take a easy, just put below code in .htaccess file via CPanel # END WordPress RewriteEngine On RewriteCond %{HTTPS} off RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301] Now,…

WordPress Shortcode to Display Single Recent Posts

Do you want to display single recent posts in WordPress? Just follow below tutorial. Open file of Function Theme (functions.php) then add following codes function latestart() { $the_query = new WP_Query( ‘posts_per_page=1’ ); while ($the_query…