メインのpage.phpテンプレートファイルにはほとんどHTMLがありません。それは非常に不特定であり、個々の要素を編集したり、ウェブページを正確に変更することはできません。ヘッダー全体のようなものを削除することはできますが、ページ構造の大部分を含むPHPテンプレートファイルを持つ他のテーマを見てきました。WordpressテーマのPHPテンプレートファイルでHTMLを編集できないのはなぜですか?
<?php
/**
* The header for our theme.
*
* Displays all of the <head> section and everything up till <div id="content">
*
* @package Nikkon
*/
global $woocommerce;
?><!DOCTYPE html>
<html <?php language_attributes(); ?>>
<head>
<meta charset="<?php bloginfo('charset'); ?>">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="profile" href="http://gmpg.org/xfn/11">
<link rel="pingback" href="<?php bloginfo('pingback_url'); ?>">
<?php wp_head(); ?>
</head>
<body <?php body_class(); ?>>
<div id="page" class="hfeed site <?php echo sanitize_html_class(get_theme_mod('nikkon-slider-type')); ?>">
<?php echo (get_theme_mod('nikkon-site-layout') == 'nikkon-site-boxed') ? '<div class="site-boxed">' : ''; ?>
<?php if (get_theme_mod('nikkon-header-layout') == 'nikkon-header-layout-three') : ?>
<?php get_template_part('/templates/header/header-layout-three'); ?>
<?php else : ?>
<?php get_template_part('/templates/header/header-layout-one'); ?>
<?php endif; ?>
<?php if (is_front_page()) : ?>
<?php get_template_part('/templates/slider/homepage-slider'); ?>
<?php endif; ?>
<div class="site-container <?php echo (! is_active_sidebar('sidebar-1')) ? sanitize_html_class('content-no-sidebar') : sanitize_html_class('content-has-sidebar'); ?>">
答えではないので、これをコメントとして追加してください。 OPのために、あなたが使いたい子どもを見てください。元のテーマファイルを編集したくないですか?更新プログラムの変更は失われます。 – RST
あなたは正しい@RSTです私はいつもテーマとして子供のテーマとして取り組んでいますが、質問はあまりにも曖昧でしたので、間違った場所を探していたことを指摘したかっただけです。私は更新します。 – chop62