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 Templatesを確認する必要があります。

というファイルを作成する必要があります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 に答える