Forum Replies Created

Viewing 1 replies (of 1 total)
  • В WordPress 4.7 изменилась работа с фильтрами. Чтобы всё снова заработало, нужно заменить строку 79 в файле plugin.php:

    //$wp_filter[ $tag ] [ $priority ] [ $id ] ['function'] = 'EMT_wptexturize';
    if ( ! isset( $wp_filter[ $tag ] ) ) {
    	$wp_filter[ $tag ] = new WP_Hook();
    }
    $wp_filter[ $tag ]->callbacks[ $priority ][ $id ] = array( 'function' => 'EMT_wptexturize', 'accepted_args' => 2 );

    Или, возможно, даже так:

    //$wp_filter[ $tag ] [ $priority ] [ $id ] ['function'] = 'EMT_wptexturize';
    add_action( $tag, 'EMT_wptexturize', $priority, 2 );
Viewing 1 replies (of 1 total)