kylephillips / favorites

Simple and flexible favorite buttons for any WordPress post type.
https://favoriteposts.com
223 stars 86 forks source link

Introduce filter to control favourite button display on posts/pages #142

Open o-samaras opened 4 years ago

o-samaras commented 4 years ago

It would be great to allow plugins/themes for more fine grained control over the display of the favourite button on posts/pages.

Suggested solution: (i.e. at app/Entities/Post/PostHooks) $display = add_filter('favourites_should_display_in_post', $this->settings_repo->displayInPostType($post->post_type), $post);

This would allow to override the display of the button based on more specific aspects (i.e. show/hide for specific post, posts of specific category, posts with certain content, posts with a specific tag, etc.).