主题

给模板添加一个landingpage模板文件

https://developer.wordpress.org/themes/template-files-section/page-template-files/

/*
Template Name: Full-width layout
Template Post Type: post, page, event
*/

------------

<?php
/* Template Name: Langpage */

if ( ! defined( 'ABSPATH' ) ) {
    exit; // Exit if accessed directly.
}
get_header();
?>
<div  class="dmlandingwrap">
 
    <?php 

    the_content();
  //$file = the_content();
 //$file = get_the_content();

 
 //$file = DMJTBLOCKROOT.$file.'.php';
// wpdmblock($file);

 
?>

</div>

<?php
get_footer();