WordPress - 覆盖短代码
2022-08-31 00:17:22
我有一个主题,它通过首页上的滑块扩展了Visual Composer插件。滑块将显示来自五个不同客户的五个推荐。我想将每个推荐的特色图像添加为滑块中的缩略图。
下面是父主题的缩短代码:
function jo_customers_testimonials_slider( $atts ) {
extract( shortcode_atts( array( 'limit' => 5, "widget_title" => __('What Are People Saying', 'jo'), 'text_color' => "#000" ), $atts ) );
$content = "";
$loopArgs = array( "post_type" => "customers", "posts_per_page" => $limit, 'ignore_sticky_posts' => 1 );
$postsLoop = new WP_Query( $loopArgs );
$content = "";
$content .= '...';
$content .= '...';
$content .= '...';
wp_reset_query();
return $content;
}
add_shortcode( 'jo_customers_testimonials_slider', 'jo_customers_testimonials_slider' );
我的函数.php文件:
function jo_customers_testimonials_slider_with_thumbnail( $atts ) {
extract( shortcode_atts( array( 'limit' => 5, "widget_title" => __('What Are People Saying', 'jo'), 'text_color' => "#000" ), $atts ) );
$content = "";
$loopArgs = array( "post_type" => "customers", "posts_per_page" => $limit, 'ignore_sticky_posts' => 1 );
$postsLoop = new WP_Query( $loopArgs );
$content = "";
$content .= '...';
$content .= get_the_post_thumbnail( get_the_ID(), 'thumbnail' );
$content .= '...';
$content .= '...';
wp_reset_query();
return $content;
}
add_shortcode( 'jo_customers_testimonials_slider', 'jo_customers_testimonials_slider_with_thumbnail' );
从理论上讲,我的函数.php文件中的函数应该覆盖父主题中的短代码。但是当我使用此代码时,似乎什么也没发生。我做错了什么?
编辑:
已尝试此代码,但仍然无法正常工作。
function wpa_add_child_shortcodes(){
remove_shortcode('jo_customers_testimonials_slider');
add_shortcode( 'jo_customers_testimonials_slider', 'jo_customers_testimonials_slider_with_thumbnail' );
}
add_action( 'after_setup_theme', 'wpa_add_child_shortcodes' );
也更改为
,但结果没有差异。add_action( 'after_setup_theme', 'wpa_add_child_shortcodes' );
add_action( 'init', 'wpa_add_child_shortcodes' );
编辑 2(使用解决方案):
改变以解决它。add_action( 'after_setup_theme', 'wpa_add_child_shortcodes' );
add_action( 'wp_loaded', 'wpa_add_child_shortcodes' );