admin管理员组

文章数量:1426620

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?

本文标签: theme developmentthecontent() is getting null in Preview Debug