rdusnr

Untitled

Oct 18th, 2017
123
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1.  
  2. function check_bbpress_components_add_schema() {
  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', 'check_bbpress_components_add_schema');
Advertisement
Add Comment
Please, Sign In to add comment