SQL查询-直接从数据库中选择值

时间:2021-10-25 作者:Marco Dedo

在我的WordPress数据库中options 表中有一个字段option_name 被称为titb_flc_options, 其值为:

s:397:"a:10:{
    s:16:"69c3d01e88aba503";
    s:0:"";
    s:12:"titb_flc_url";
    s:34:"https://www.facebook.com/wired/";
    s:17:"titb_flc_btnlabel";
    s:15:"Chiedi al guru!";
    s:18:"titb_flc_titlesize";
    s:4:"true";
    s:17:"titb_flc_language";
    s:5:"it_IT";
    s:16:"a65a212aa62e5e30";
    s:0:"";
    s:11:"button_icon";
    s:15:"003-messenger-1";
    s:11:"button_size";
    s:10:"flc_medium";
    :15:"button_position";
    s:5:"right";
    s:14:"button_animate";
    s:1:"1";
}";
如何选择值,例如:https://www.facebook.com/wired/ 要在屏幕上显示它?

1 个回复
SO网友:Marco Dedo

我想我已经找到了我的问题的答案,观众们,以防它可能对其他人有所帮助:

$risultato =  maybe_unserialize(get_option(\'titb_flc_options\'));    
echo $risultato[\'titb_flc_url\'];

相关推荐

归档.php上的标题显示不正确

我第一次做了一个基本的wordpress主题,我终于把所有的东西都做好了。标题在每个页面上都显示得非常好,除了归档页面(博客帖子的存放位置)。我已经附上了下面的代码,有人知道它可能会出错的原因吗?主要是标题图像根本没有出现;导航很好,一切正常。因为某种原因,没有图像。它也不会出现在测试帖子上。档案文件php<div class="container"> <h1><?php single_cat_title();?></h1&g