2017-01-24 115 views
1

我是一個初學者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

回答

2

使用add_theme_support('post-thumbnails');此代碼在您的function.php文件中。這將爲您提供模板的功能圖像選項。