您可以使用选项API设置blog\\u状态,然后显示它。如果要使用博客描述,您已经有了UI,可以从设置->常规中进行设置,并设置标记行以更新博客状态。
然后,可以使用以下内容在主题模板中的任何位置显示标记行:
echo get_option( \'blogdescription\', \'Default status message\' );
但是,如果您在其他地方使用博客描述,并且希望为博客状态使用专用选项,那么您可以使用
update_option
如以下示例所示,设置并显示博客状态。
要设置日志状态,请执行以下操作:
update_option( \'blog_status_message\', \'This is pretty cool blog status message\' );
要显示日志状态,请执行以下操作:
echo get_option( \'blog_status_message\', \'The default status message\' );
有关的更多信息
Options API.