0

我是 wordpress 的初学者,因为我使用的是论文主题,我被停在一个地方,不知道那个地方的解决方案。

问题是

我想在论文主题中创建自定义页面模板,所以不知道该怎么做。那么如何在 wordpress中创建custom_template呢?提前致谢

4

2 回答 2

0

您可以在 Wordpress 中创建自定义模板并将其存储在您正在使用的当前主题中

<?php
/* Template Name: ContactTemplate (like this try giving any logical name so that while using this template you can Remember it by name, this is for Contact page Template)
?>
<?php get_header(); //this will call your header files ?>
<?php 
//your content goes here 
//you can run custom Query here, try running query_posts(); if you want to show posts
?>
<?php get_sidebar(); ?>
<?php get_footer(); ?>

注意:- 所有页面的页眉、页脚和侧边栏将保持不变

于 2012-08-17T17:34:38.213 回答
0

在您激活的主题文件夹中创建自定义模板创建文件。例如,如果您的自定义模板名称是“home_custom_template”。在文件中编写代码:

    <?php
    /*
    Template Name: home_custom_template
    */
    get_header();
    ?>
          /*
             Your Php and html code here...
          */

 <?php get_footer();?>

1))

     /*
        Template Name: home_custom_template
     */

此代码定义为 wordpress 这是模板。

2))创建新页面在wordpress中,第一页右侧的模板下拉菜单。你可以在那里找到你的模板。因此,选择您的自定义模板并发布页面。

于 2012-08-17T09:40:36.020 回答