How to display the number of posts in WordPress

How to show the number of posts in WordPress You can display the number of posts published  (excluding pages) with the following function: <?php $count_posts = wp_count_posts(); $published_posts = $count_posts->publish; ?> If you intend to ...

Read more

How to add a jQuery datepicker in WordPress

It's possible to add a calendar (a datepicker) in WordPrss by using a jQuery UI. jQuery datepicker You can easily find an appropriate jQuery datepicker source in the Internet. For example, the folloiwng simple jQuery ...

Read more