twentyseventeenの子テーマ使用がうまくいきません
-
こんばんは。
twentyseventeenの、投稿ページのトップに表示される「投稿」という表題を「ポスト」に変えて使用しています。ja.poファイルをpoeditにて開いて、投稿→ポストと、置き換えて、そのファイルをmoファイル共々、子テーマの中のlanguagesファイルに収め、上のディレクトリのfunction.phpに、
<?php
// Exit if accessed directly
if ( !defined( ‘ABSPATH’ ) ) exit;// BEGIN ENQUEUE PARENT ACTION
// AUTO GENERATED – Do not modify or remove comment markers above or below:if ( !function_exists( ‘chld_thm_cfg_parent_css’ ) ):
function chld_thm_cfg_parent_css() {
wp_enqueue_style( ‘chld_thm_cfg_parent’, trailingslashit( get_template_directory_uri() ) . ‘style.css’, array( ) );
}
endif;
add_action( ‘wp_enqueue_scripts’, ‘chld_thm_cfg_parent_css’, 10 );
add_action( ‘after_setup_theme’, ‘child_setup’);// END ENQUEUE PARENT ACTION
add_action( ‘after_setup_theme’, ‘child_setup’);
function child_setup() {
// 子テーマフォルダ/languages下のmoファイルを読み込む
load_child_theme_textdomain( ‘twentyseventeen_child’, get_stylesheet_directory() . ‘/languages’);
}
?>を記述してありますが、投稿トップページだけ置き換えられません。管理者ページなどはすべて「ポスト」になっているのに。
おわかりになる方、お時間ありましたらアドバイスお願いいたします。
ヘルプの必要なページ: [リンクを見るにはログイン]
- トピック「twentyseventeenの子テーマ使用がうまくいきません」には新たに返信することはできません。