Get next post in same category not working WP 4.7.4

Use the_post_navigation( $args ); to display next and previous links in your template for a single post. To restrict links to the same category, your $args array, in its simplest form, should be:

$args = array(
    'in_same_term' => true,
    );

Other parameters are optional. Get their list here.