• Resolved Lai Xuancheng

    (@lai32290)


    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?

Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘the_content() is getting null in Preview Debug’ is closed to new replies.