3
<div class="row clearfix">
    <div class="content-wrap ninecol clearfix">
        <div class="content">
           <h1 class="title">Om oss</h1>
           <hr>
           <div class="entry-content">
           <h4>Vilka är Unified Sweden?</h4>
           <p>Unified Sweden är en webbyrå som ständigt strävar </p>
        </div>
    <div>
 </div>

如果我想把它作为一个模板,以便我可以将它用于其他页面,是下面的代码吗?

<div class="content-wrap ninecol clearfix">
    <div class="row clearfix">
        <div class="content">
            <?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
                 <h1><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h1>

                 <?php the_content(); ?>

            <?php endwhile; endif; ?>
        </div>
    <div>
</div>
4

1 回答 1

10

您应该查看Wordpress 模板层次结构页面模板

您应该创建一个名为page-<something-you-want>.php. 打开文件并为其添加模板名称并添加您的内容。

例如:

<?php
/*
 * Template Name: A Static Page
 */
get_header(); ?>

<whatever content you want to add>

<?php get_footer(); ?>

然后转到Add new Page,在Page Attribute框中,您会看到一个名为 的下拉菜单Template。您选择称为 A Static Page(或上面以其他方式定义)的模板并发布页面。就这样。

获取内容

要在 Wordpress 中获取内容,您需要The Loop

 <?php if ( have_posts() ) : while ( have_posts() ) : the_post();       
  the_content(); // displays whatever you wrote in the wordpress editor
  endwhile; endif; //ends the loop
 ?>

回到你的案例:

 <div class="sevencol">
   <?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
       <h2><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2>
         <div>
           <?php the_content(); ?>
         </div>
  <?php endwhile; endif; ?>
 </div>
于 2012-12-12T09:55:17.527 回答