diff --git a/includes/functions.php b/includes/functions.php index 616f6f9..e57d24d 100644 --- a/includes/functions.php +++ b/includes/functions.php @@ -180,11 +180,11 @@ function wedocs_doc_nav() { echo '

'. __( 'Doc navigation', 'wedocs' ) . '

'; if ( $prev_post_id ) { - echo '← ' . apply_filters( 'wedocs_translate_text', get_post( $prev_post_id )->post_title ) . ''; + echo '← ' . apply_filters( 'translate_text', get_post( $prev_post_id )->post_title ) . ''; } if ( $next_post_id ) { - echo '' . apply_filters( 'wedocs_translate_text', get_post( $next_post_id )->post_title ) . ' →'; + echo '' . apply_filters( 'translate_text', get_post( $next_post_id )->post_title ) . ' →'; } echo '';