我的wordpress主题中有一节从头开始,在该部分我有标题,标语和描述。
我正在使用以下方式显示它们:
标题:
get_bloginfo();
用于标语:
get_bloginfo('description');
我需要一种方法,用户可以编写更长的网站描述并显示它。
我只在谷歌上发现如何添加元描述,但这不是我想要的。
答案 0 :(得分:1)
Wordpress将这些信息保存在选项表中。你也可以这样做。在wordpress文档中查看以下函数:
您需要拥有一个唯一的键名称,例如desc_long
,您将仅用于此目的。
以下是一些示例代码段:
// to save the value in database
update_option('desc_long', $_POST['input_field_name_in_form']);
// to remove the value from database
delete_option('desc_long');
// in your theme use the following to retrieve the value
get_option('desc_long');
据我所知,您无法在现有设置页面中添加任何额外功能,其中管理员可以输入长描述并保存。如果您已经有任何主题选项页面,这是放置此功能的好地方,否则您将不得不创建它。