我的WordPress安装中有两个主题,theme1
和theme1-child
(设置为活动)。
theme1
中有一部分我要编辑,theme1/inc/templates/post-meta.php
if ( ! function_exists( 'theme1_entry_date' ) ) :
function theme1_entry_date( $echo = true ) {
if ( has_post_format( array( 'chat', 'status' ) ) )
$format_prefix = _x( '%1$s on %2$s', '1: post format name. 2: date', 'theme1' );
else
$format_prefix = '%2$s';
$date = sprintf( __( ' on ', 'theme1' ) . '<a href="%1$s" title="%2$s" rel="bookmark"><time class="entry-date" datetime="%3$s">%4$s</time></a>',
esc_url( get_permalink() ),
esc_attr( sprintf( __( 'Permalink to %s', 'theme1' ), the_title_attribute( 'echo=0' ) ) ),
esc_attr( get_the_date( 'c' ) ),
esc_html( sprintf( $format_prefix, get_post_format_string( get_post_format() ), get_the_date() ) )
);
if ( $echo )
echo $date;
return $date;
}
endif;
style.css
/*
Theme Name: Theme1 Child
Theme URI: http://www.url.com
Description: This is a child theme for Theme1.
Author: Author
Author URI: http: //www.url.com
Template: theme1
Version: 1.0
*/
@import url("../theme1/style.css");
div.woocommerce-tabs ul.tabs{display:none !important;}
html body .resp-tabs-container {margin-bottom: 30px;}
@media screen and (min-width: 800px) {
html body div.resp-tab-content {
padding: 10px !important;
}
}
因此,我使用theme1-child/inc/templates/post-meta.php
中的修订重新创建了该文件,但是未显示这些修订。
有什么想法为什么不接受更改?
答案 0 :(得分:1)
您需要将 theme1_entry_date 函数粘贴到子主题 functions.php 文件中。
谢谢
答案 1 :(得分:0)
也许子模板中放置的style.css文件中有错误?