我无法将我的标题页插入我的wordpress index.php页面。?

时间:2013-11-19 12:23:47

标签: wordpress

# header.php 
  <?php
  /**
* The Header for our theme.
*
  *Displays all of the <head> section and everything up till
 <div id="inner_header">
  **/
 ?>

 <div id="inner_header">
     <div id="templatemo_site_title">MY DEMO WESITE</div>
       <div id="templatemo_site_slogan">    <a href="#" target="_parent">Website Templates</a> by     </div>
   </div>

wordpress index.php不支持此页面。 我想将我的标题poage包含在wordpress index.php页面

1 个答案:

答案 0 :(得分:0)

在WordPress语法中,在“主题”文件夹中的大多数页面中“加载”标题的常规方法。

你应该使用这样的东西。

    <?php
/**
 * Template Name: Front Page Template
 *
 * @package WordPress
 * @subpackage Twenty_Twelve
 * @since Twenty Twelve 1.0
 */

get_header(); ?>

函数 get_header()通常会加载header.php文件,您将放置所有内容。

-

如果要在外部文件或文件夹上加载WordPress标题,则需要加载函数 wp_load(),您可以在其中找到WordPress文件夹的根目录。

<?php require_once($_SERVER['DOCUMENT_ROOT'] . '/your_extra_path/wp-load.php' ); ?>

希望我理解你的问题。