不确定是否可以这样做,但是我正在尝试覆盖父主题的template_tags.php
文件中的一小部分。我试图将相同的文件复制到我的子主题中,但是似乎没有覆盖该文件。因此,我想知道是否需要使用过滤器来进行更改,但是我不确定该如何处理。
这是我要更改的内容:
<?php if(has_header_image()){?>
<?php
$headerImage = get_header_image();
if(class_exists('woocommerce')){
if( is_woocommerce() || is_product() || is_cart() || is_shop() ){
$thumbId = get_post_thumbnail_id();
$thumbImage = wp_get_attachment_url( $thumbId );
}
if(!empty($thumbImage)){
$headerImage = $thumbImage;
}
}
?>
<div class="rellax">
<img src="<?php echo esc_url( $headerImage ); ?>">
</div>
<?php } ?>
像这样:
<?php if(has_header_image()){?>
<?php
$headerImage = get_header_image();
if(class_exists('woocommerce')){
if( is_woocommerce() || is_product() || is_cart() || is_shop() ){
$thumbId = get_post_thumbnail_id();
$thumbImage = wp_get_attachment_url( $thumbId );
}
if(!empty($thumbImage)){
$headerImage = $thumbImage;
}
}
?>
<div class="rellax">
<?php if ( has_post_thumbnail() ): ?>
<?php the_post_thumbnail(); ?>
<?php else : ?>
<img src="<?php echo esc_url( $headerImage ); ?>">
<?php endif; ?>
</div>
<?php } ?>
总体而言,我真正想要添加/更新的全部是以下部分:
<div class="rellax">
<?php if ( has_post_thumbnail() ): ?>
<?php the_post_thumbnail(); ?>
<?php else : ?>
<img src="<?php echo esc_url( $headerImage ); ?>">
<?php endif; ?>
</div>
我知道对于这么小的事情来说似乎有些矫over过正,但是我不想在父主题内直接修改文件,以防文件有更新,并且炸掉了我添加的所有更改。
同样,不确定是否可行或最佳方法。
这是包装的完整功能:
if( !function_exists('business_idea_breadcrumbs')){
function business_idea_breadcrumbs(){
$business_idea_option = wp_parse_args( get_option( 'business_idea_option', array() ), business_idea_default_data() );
?>
<section class="sub-header">
<?php if(has_header_image()){?>
<?php
$headerImage = get_header_image();
if(class_exists('woocommerce')){
if( is_woocommerce() || is_product() || is_cart() || is_shop() ){
$thumbId = get_post_thumbnail_id();
$thumbImage = wp_get_attachment_url( $thumbId );
}
if(!empty($thumbImage)){
$headerImage = $thumbImage;
}
}
?>
<div class="rellax">
<?php if ( has_post_thumbnail() ): ?>
<?php the_post_thumbnail(); ?>
<?php else : ?>
<img src="<?php echo esc_url( $headerImage ); ?>">
<?php endif; ?>
</div>
<?php } ?>
<?php if(has_header_image()){?>
<div class="sub-header-overlay">
<?php } ?>
<div class="container sub-header-container">
<div class="row">
<div class="col-md-12 text-center">
<?php
if( function_exists('bcn_display') ){
bcn_display();
}else if( is_front_page() && is_home() ){
echo '<h1 class="page_title">' . __('Home','business-idea') . '</h1>';
}else if( is_archive() ){
the_archive_title( '<h1 class="page_title">', '</h1>' );
the_archive_description( '<div class="taxonomy-description">', '</div>' );
}else{
?>
<h1 class="page_title"><?php single_post_title(); ?></h1>
<?php
}
?>
</div>
</div>
</div>
<?php if(has_header_image()){?>
</div>
<?php } ?>
</section>
<?php
}
}
答案 0 :(得分:1)
正如我的评论中所述,仅当原始代码中有您要更改的确切内容进行“ apply_filter”调用时,才应用过滤器。 在这种情况下,您必须覆盖完整功能,方法是将其复制到您的子主题中并删除
if( !function_exists('business_idea_breadcrumbs')){
加上最后一个括号。
这样,当父函数运行到function_exists检查中时,该函数将存在。 然后只需根据您的需要更改子功能即可。