3ответ(ов) в теме
вызвал фильтер без if ( ! is_admin() ):
было так
if ( ! is_admin() ): add_filter( 'the_content', 'rcl_post_content_rating', 10 ); add_filter( 'the_excerpt', 'rcl_post_content_rating', 10 ); endif; function rcl_post_content_rating( $content ) { global $post; if ( ! isset( $post ) || doing_filter( 'get_the_excerpt' ) || (is_front_page() && is_singular()) ) return $content; $content .= rcl_get_html_post_rating( $post->ID, $post->post_type ); return $content; }
вот так
remove_filter( 'the_excerpt', 'rcl_post_content_rating', 10 ); add_filter( 'the_excerpt', 'rcl_post_content_rating2', 10 ); function rcl_post_content_rating2( $content ) { global $post; if ( ! isset( $post ) || doing_filter( 'get_the_excerpt' ) || (is_front_page() && is_singular()) ) return $content; $content .= rcl_get_html_post_rating( $post->ID, $post->post_type ); return $content; }
Вы не имеете права на публикацию сообщений в этой теме