Advertisement
rdusnr

Untitled

Oct 18th, 2017
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. function sqr_check_bbpress_components_add_schema() {
  2. /* If bbpress plugin it's active add schema for their forum/topics components */
  3. if(class_exists( 'bbPress')) {
  4. if (bbp_is_forum_archive() || bbp_is_topic_archive() || bbp_is_single_forum() || bbp_is_single_topic() || bbp_is_single_reply() || bbp_is_single_view()) {
  5. add_filter('kleo_schema_org_type', function () {
  6. return 'DiscussionForumPosting';
  7. });
  8. }
  9. }
  10. }
  11. add_action('wp', 'sqr_check_bbpress_components_add_schema');
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement