状況
外部に依頼したHP(wordpress)に新規ページを作ってほしいと言われましたが、
wordpressやphpの知識が乏しいため皆様のお力をお借りしたいです。
既存のphpのページをコピーして新規ページ 「test.php」を仮で作成し、
アップロードしたのですが、headerとfooterのみ表示され、bodyの部分は表示されませんでした。
cssの文章もコピー、修正し、function.phpにもコードを記載しました。(下記参照)
PHPコード
/* Template Name: ○○ */ get_header(); ?> <div id="testmt" class="main"> <h2>見出し</h2> <div class="img"> <img src="画像"> </div> <div class="img-sp"> <img src="画像"> </div> <p>文章</p> </div><!-- main --> <?php get_footer(); ?>
cssコード
#testmt.main { padding-top: 80px; margin: 0 auto; text-align: center; padding-bottom: 480px; background: none; } #testmt.main .img-sp { display: block; } #testmt.main .img img { -webkit-filter: invert(100%) contrast(100%); filter: invert(100%) contrast(100%); max-width: 100%; width: auto; } #testmt.main h2 { color: #000; font-size: 2rem; margin: 20px 0; margin: 80px 0; line-height: 1.5em; } #testmt.main p { color: #000; line-height: 2rem; } #testmt.main .img-sp img { width: 100%; height: auto; max-width: 100%; } #testmt.main p br { display: none; }
function.phpコード
flush_rewrite_rules( false ); register_post_type( 'test', array( 'labels' => array( 'name' => __( 'テストページ' ), 'singular_name' => __( 'テストページ' ) ), 'public' => true, 'supports' => array( 'title', 'editor', 'author', 'thumbnail', 'excerpt', 'custom-fields' ,'comments' ), 'menu_position' => 100, 'has_archive' => true ) );
修正箇所をご教授いただければ幸いです。
よろしくお願い致します。
あなたの回答
tips
プレビュー