在我的管理面板上,我有一个名为“LesVétérans”的页面。 在这个页面中,我在WYSIWYG上的一个名为“description”的自定义div中写了一些内容。
现在在我的PHP代码中,我想显示这个div而不使用the_content();
我只想定位和显示这个div而不是其余的(本页面上有更多内容)。
答案 0 :(得分:0)
您需要获取内容,然后使用正则表达式获取所需的tge部分。
以下是示例代码:
$content = get_the_content();
if (preg_match('/<div id="mydiv">([^<]*)<\/div>/', $content, $matches) ) {
echo $matches[1]; //This is my div
}