I want to add a “status” to my wordpress blog. My definition of status is a piece of text that say something about the blog that could be changed every day or not changed in month and completely independent of blog posts and pages. For example, in my case I need to add a brief description of the city I am while travelling. Any plugin or similar to do this?
Note: Text widget is not an option because I have to control where to put this information, ideally through a PHP call
You can use the option API to set the blog_status and then display it. If you want to use blog description for the purpose you already have the UI available to set it from Setting->General and set the tag line to update your blog status.
Then you can display the tag line anywhere in your theme template using the following:
But if you are using blog description somewhere else and want a dedicated option for the blog status purpose then you can use the
update_option
like in the examples below to set and display the blog status.To set the blog status:
To display the blog status:
For more information on Options API.