An error related to 'www.youtube.com/devicesupport'

Recently, YouTube changed the support for RSS/Atom feeds. Due to this change, plugins using RSS feeds generate a problem: they cannot load YouTube videos properly. In the affected plugins, a video titled "www.youtbe.com/devicesupport" is displayed with a kind (?) message: ...

Read more

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

How to add a custom top menu to WordPress

Introduction WordPress provides options to add menus to various locations depending on themes. However, you might also want to insert a menu navigation to a new location. For example, there is no top navigation in the Iconic One ...

Read more