创建wordpress模板

时间:2017-01-24 01:49:21

标签: php wordpress

我是wordpress的初学者。

我已经开始在现有的wordpress网站上工作了。我需要创建一个新的模板页面。

<div class="contain">
  <img class="main" src="assets/images/landing-promo/image.jpg"/></div>
  <img class="logo" src="assets/images/logo.jpg"/>
  <div class="hello">
    <p> hello facebook! </p>
    <p> Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.</p>
  </div>
</div>

这是我的加价页面。我希望可以从仪表板页面上传图像和内容。 我开始使用以下代码创建模板。

<?php
/**
* Template Name: Facebook-Landing Page
*
* @package abcd123
* @since 1.0.0
*/ ?>
<div class="contain">
<img src="<?php echo get_field( 'nm_landing_logo' ); ?>" alt="landing_logo">
</div>

我使用此模板在仪表板上添加了一个名为facebook-landing的新页面。 但该页面没有给我输入图像的选项。 image of my dashboard 我已经存在以类似方式工作的页面。我不确定我错过了什么。

需要帮助! 提前谢谢。

需要类似下图的内容。 how the output should be

1 个答案:

答案 0 :(得分:2)

在function.php文件中使用add_theme_support( 'post-thumbnails' );此代码。这将为您的模板提供功能图像选项。