鉴于它处于循环中,您应该能够对照post的类型进行检查,并且只将其添加到该类型中。
function add_rating_html( $title) {
if ( is_front_page() && \'post\' === get_post_type() ) {
$out = "Rating: 5";
$title .= $out;
}
return $title;
}
add_filter( \'the_title\', \'add_rating_html\', 1 );
也许有一种更好的方法可以通过挂接特定的小部件来实现,但我并不擅长Elementor的工作方式