markjaquith / page-links-to

#WordPressPlugin: Lets you make a WordPress page (or other content type) link to an external URL of your choosing, instead of its WordPress URL.
GNU General Public License v2.0
110 stars 46 forks source link

Option to disable for custom post types? #164

Open shaunw opened 2 years ago

shaunw commented 2 years ago

Is there an option to disable for all/some custom post types?

shaunw commented 1 year ago

🤦‍♂️

function page_links_to_plugin_post_types( $post_types ) {
    $post_types = [ 'post', 'events' ];
    return $post_types;
}
add_filter( 'page-links-to-post-types', 'page_links_to_plugin_post_types' );