If you are a talented webdesigner or a graphic designer, or simply you have a passion for this kind of things, then you also might like or need to promote your webdesign files. If you design your files, and people won't…
There comes a time in Wordpress when you need to sort the wordpress posts in different order than the default one. In wordpress the default "orderby" parameter is the date. But of course there are several more, which you can…
If you are a wordpress developer and you code plugins that have variable settings inserted with register_setting() function into the database, then you must also add a notice to inform users when specific options or settings are saved. In order to…
If you are a wordpress developer, and you use plugins in your developed themes, then you don't want to give headaches to your buyers by having them to manually install plugins and activate them.
This process can take up time, and it's…
Advanced Custom Fields it's the most powerful wordpress plugin that you can use to create custom fields. You can add custom fields such as images, text, editor, radio button, color picker, date etc. and attach them to any post type,…
Fonts play a very important role in webdesign. A cool bold font will make your design stand out of the crowd and make it looks more professional.
Anyway finding cool fonts is not an easy job nowadays, considering that most premium font families…
Spam comments have become a huge problem for many wordpress website owners. Every day, spammers across the globe use different techniques to leave spam comments to your blog, and to increase their ranking position on search engines.
This can get very annoying especially if…
Wordpress is the most popular CMS there is out there. Every day thousands of designers and people across the globe, decide to switch to the most popular blogging platform, which is Wordpress of course. With such a big mass of…
You have custom post types in your wordpress website, and want to count them for different purposes? Well, here is a fast and simple solution on how you can do it.
[php]
<?php
$count_posts = wp_count_posts('portfolio')->publish; //replace portfolio with your custom post type
echo…
By default, to include the wordpress header in all of your files you use this function:
[php]
<?php get_header(); ?>
[/php]
What this function does, it looks for the file called header.php inside the root folder of your theme.
But there comes a time when you…
The traffic of a website is it its most important aspect. The traffic volume and quality, determines your monthly earnings, self promotion of the website by your visitors on social networks and forums, and also your wordpress website popularity.
Webmasters are looking…
By default the loop is used to display wordpress posts. Using the loop, wordpress display each post from the blog to the current page. The loop can be styled with HTML and PHP code, which will be processed for each blog post.
For…