2017年1月9日
目次
https://github.com/jawordpressorg/theme-test-data-ja
wordpress importerが進まないときは下記の変更を加える。
wp-content/plugins/wordpress-importer/parsers.php
if ( false && extension_loaded( 'simplexml' ) ) {
define('WP_DEBUG', true);
パーツテンプレート
header.php => get_header();
footer.php => get_footer();
slug-name.php => get_template_part($slug,name);
固定ページ = page.php
投稿詳細ページ = single.php
フロントページ = front-page.php
name = サイト名
description = キャッチコピー
charset = 文字コード
<?php if ( have_posts() ) : ?>
<?php while ( have_posts() ) : the_post(); ?>
<p><a href="<?php the_permalink(); ?>"><?php the_title() ?></a></p>?>
<?php endwhile; ?>
<?php else : ?>
<p>記事がありませんでした</p>
<?php endif; ?>
アーカイブページ
ループ内の記事全てが表示される
シングルページ
ループ内でも1ページのみ表示
the_meta();
is_home
is_front_page
is_singular
プラグインと同様の効果を持つ
add_theme_support(“post_thumbnails”)
<?php the_meta(); ?>
<?php echo esc_html(get_post_meta($post->ID, 'フィールド名', true)) ?>
<?php scf::get('フィールド名'); ?>
httpd.conf
<Directory />
Options FollowSymLinks
AllowOverride None
</Directory>
AllowOverride None → All に変更する。
※ ちゃんとvar/www/htmlのディレクトリ内担っている事を確認する事!!!!