Tag wordpress

One year World of WordPress

A little over a one year ago, World of WordPress went live. A good moment to look back at what happened and tell a little about the future of World of WordPress. Because World of WordPress is already quite successful…

Allow PHP in WordPress default text widget

The default text widget in WordPress only supports HTML. You can extend the functionality of the text widget by making it possible to execute PHP. Put this code in the functions.php of the theme you are using: add_filter(‘widget_text’, ‘php_text’, 99); function…