• So I normally install this plugin for use on a particular post type. Is there a way to disable/enable its usage on a per post type basis?

Viewing 1 replies (of 1 total)
  • You can use a filter to control which post types are supported:

    add_filter( ‘page-links-to-post-types’, ‘my_filter_page_links_to_post_types’, 10, 1 );

    It receives an array of post types. Muck as needed, and return the desired array of post types.

Viewing 1 replies (of 1 total)
  • The topic ‘Enable/disable on desired post types’ is closed to new replies.