Wordpress:自定义字段的默认值显示在带有自定义模板的wordpress页面的底部

时间:2019-04-18 16:14:28

标签: wordpress custom-fields custom-wordpress-pages

我正在构建具有所需设计的wordpress页面,即在页面的顶部1/3中包含带有链接的文本,然后在页面的底部2/3中显示来自所述链接的登录页面。为了避免在加载wordpress页面时在页面的底部2/3中显示页眉和页脚部分,我使用代码来创建自定义页面模板,从而达到了目的。请参见下面的代码。但是,当自定义页面加载到页面底部2/3时,该页面的自定义字段的默认值将显示在订单列表中。参见屏幕截图。当我直接使用“额外”信息加载页面时,未显示默认值列表。

如何1)隐藏默认值以使其不显示,或者2)完全利用自定义字段。

list of custom fields view of list of custom fields values

<?php
/**
 * Template Name: Clean Page
 * This template will only display the content you entered in the page editor
 */
?>

<html <?php language_attributes(); ?> class="no-js">
<head>
    <meta charset="<?php bloginfo( 'charset' ); ?>">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <?php wp_head(); ?>
</head>

<body>


<?php
    while ( have_posts() ) : the_post();   
        the_content();
    endwhile;
?>
<?php wp_footer(); ?>
</body>
</html>

0 个答案:

没有答案