最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

theme development - the_content() is getting null in Preview Debug

programmeradmin2浏览0评论

I'm not able to edit Page (post-type: page) by Elementor, the Preview could not be loaded theme.

I just created a very simple theme to test, like this:

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title></title>
</head>
<body>
<?php

if (have_posts()) {
    while(have_posts()) {
        the_post();
    var_dump(the_content()); // NULL
    }
}
 ?>
</body>
</html>

It's able to show the content when It's edited by classic editor, but it's not able to edit by Elementor, and in the Preview Debugging view is not displaying the content inserted by classic editor.

And it's a new WordPress install, Elementor is the only one enabled plugin

What's missing there?

发布评论

评论列表(0)

  1. 暂无评论