6/05 Zoom 有楽町 PHP WordPressワードプレス 個人レッスン
6/05 Zoom 有楽町 kさん PHP WordPress ウェブ構築 マンツーマン基礎講座個別指導
・template-1column.php クラス名を加筆
・独自の固定ページ【「島」に渡る】 を作成
page-xxx.php 作成
画像ファイルへのパスの書き換え
template-1column.php クラス名を加筆
<?php
/**
* Template Name: 1カラムテンプレート
* Description: 1カラムレイアウト用のテンプレート
*/
get_header(); ?>
<div class="contentsWrap">
<div class="mainContents oneColumn">
<?php
if ( have_posts() ) :
while ( have_posts() ) : the_post();
?>
<article class="page">
<h1 class="type-A"><?php the_title(); ?></h1>
<section class="content">
<?php the_content(); ?>
</section>
</article><!-- /.page -->
独自の固定ページを作成
page-xxx.php 作成
画像ファイルへのパスの書き換え
<img src="images/~">
<img src="<?php echo get_template_directory_uri(); ?>/images/~">