• Resolved knguyen2011

    (@knguyen2011)


    I want to set permission to use the instant indexing for specific user using Role User editor but no option. How can I do it?

Viewing 1 replies (of 1 total)
  • Plugin Support Rank Math Support

    (@rankmathteam)

    Hello @knguyen2011,

    Thank you for contacting the support.

    You can use the rank_math/indexing_api/capability filter hook to change the required capability from “manage_options” to a different capability.

    For example, this is how you can restrict the admin page to the users who are allowed to write posts:
    add_filter( 'rank_math/indexing_api/capability', function() { return 'edit_posts'; } );

    If you don’t know how to add the filter code to your site, we have a Knowledge Base page for that:
    https://rankmath.com/kb/wordpress-hooks-actions-filters/

    Hope that helps.

Viewing 1 replies (of 1 total)
  • The topic ‘Set permission’ is closed to new replies.