哪里可以在WordPress中找到get_option函数内的值

时间:2014-09-15 04:35:14

标签: php wordpress

我的WP目录中的header.php文件中有以下代码片段:

                    <div class="top_menu_right">

                    <?php

                        $pp_top_right_content = get_option('pp_top_right_content');

                        echo html_entity_decode(stripslashes($pp_top_right_content));

                    ?>

                </div>

我的问题是在哪里可以找到变量的值

(pp_top_right_content) 
里面的 get_option功能

我是WordPress编码的新手,非常感谢回答我的问题。先感谢您。

1 个答案:

答案 0 :(得分:0)

wp_options表中的值以option_value字段中的序列化数组格式存储。

尝试在option_value字段中搜索。