嘿,所有我一直在努力寻找内容,加载了一个页面几天,现在似乎无法找到它的位置。
这是填充内容的WP代码:
if ( function_exists(\'register_sidebar\') ) {
register_sidebar(array(
\'id\' => \'home-top-sidebar\',
\'name\' => \'Home Top Sidebar\',
\'before_widget\' => \'<div class="visual"><div class="visual-holder">\',
\'after_widget\' => \'</div></div>\',
\'before_title\' => \'<h3>\',
\'after_title\' => \'</h3>\'
));
然而,就像我上面所说的,我无法找到它从哪里提取数据?!!?内容似乎不在网站的任何页面中,也不在数据库中?
我感兴趣的内容介于before_widget 还有after_widget
在加载的页面上呈现的html代码如下所示(我试图从中查找内容的部分):
<div class="visual">
<div class="visual-holder">
<img src="http://xxxxxx.com/wp-content/themes/xxzteye/images/img1.jpg" alt="image description" width="974" height="408">
<div class="visual-text">
<h2>State-of-the-art technologies</h2>
<p>in the most experienced hands.</p>
</div>
</div>
</div>
有人能告诉我这是从哪个地方提取的吗??