Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Support devnihil

    (@devnihil)

    @vitaliykolos We’re sorry to hear you are experiencing this issue on your site.

    If you wish to remove the rel=”prev” and rel=”next” from your site you can do so by utilizing the wpseo_next_rel_link and wpseo_prev_rel_link developer filters, such as in the following example:

    <?php
    /********* DO NOT COPY THE PARTS ABOVE THIS LINE *********/
    
    /* Remove Yoast SEO Prev/Next URL from all pages
     * Credit: Yoast Team
     * Last Tested: Jun 10 2017 using Yoast SEO 4.9 on WordPress 4.8
     */
    
    add_filter( 'wpseo_next_rel_link', '__return_false' );
    add_filter( 'wpseo_prev_rel_link', '__return_false' );

    Also, you can find additional code examples on how to implement this filter here.

    Plugin Support devnihil

    (@devnihil)

    We are going ahead and marking this issue as resolved due to inactivity. If you require any further assistance please create a new issue.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Disable the pagination feature’ is closed to new replies.