bbp_template_include_theme_compat( string $template = '' )
Reset main query vars and filter ‘the_content’ to output a Forums template part as needed.
Description
Parameters
- $template
-
(Optional)
Default value: ''
Source
File: bp-forums/core/theme-compat.php
445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 | function bbp_template_include_theme_compat( $template = '' ) { /** * Bail if a root template was already found. This prevents unintended * recursive filtering of 'the_content'. * */ if ( bbp_is_template_included() ) { return $template ; } /** * If BuddyBoss is activated at a network level, the action order is * reversed, which causes the template integration to fail. If we're looking * at a BuddyBoss page here, bail to prevent the extra processing. * * This is a bit more brute-force than is probably necessary, but gets the * job done while we work towards something more elegant. */ if ( function_exists( 'is_buddypress' ) && is_buddypress() ) return $template ; // Define local variable(s) $bbp_shortcodes = bbpress()->shortcodes; // Bail if shortcodes are unset somehow if ( ! is_a ( $bbp_shortcodes , 'BBP_Shortcodes' ) ) return $template ; /** Users *************************************************************/ if ( bbp_is_single_user_edit() || bbp_is_single_user() ) { // Reset post bbp_theme_compat_reset_post( array ( 'ID' => 0, 'post_author' => 0, 'post_date' => 0, 'post_content' => bbp_buffer_template_part( 'content' , 'single-user' , false ), 'post_type' => '' , 'post_title' => bbp_get_displayed_user_field( 'display_name' ), 'post_status' => bbp_get_public_status_id(), 'is_archive' => false, 'comment_status' => 'closed' ) ); /** Forums ************************************************************/ // Forum archive } elseif ( bbp_is_forum_archive() ) { // Page exists where this archive should be $page = bbp_get_page_by_path( bbp_get_root_slug() ); // Should we replace the content... if ( empty ( $page ->post_content ) ) { // Use the topics archive if ( 'topics' === bbp_show_on_root() ) { $new_content = $bbp_shortcodes ->display_topic_index(); // No page so show the archive } else { $new_content = $bbp_shortcodes ->display_forum_index(); } // ...or use the existing page content? } else { $new_content = apply_filters( 'the_content' , $page ->post_content ); } // Should we replace the title... if ( empty ( $page ->post_title ) ) { // Use the topics archive if ( 'topics' === bbp_show_on_root() ) { $new_title = bbp_get_topic_archive_title(); // No page so show the archive } else { $new_title = bbp_get_forum_archive_title(); } // ...or use the existing page title? } else { $new_title = apply_filters( 'the_title' , $page ->post_title ); } // Reset post bbp_theme_compat_reset_post( array ( 'ID' => ! empty ( $page ->ID ) ? $page ->ID : 0, 'post_title' => $new_title , 'post_author' => 0, 'post_date' => 0, 'post_content' => $new_content , 'post_type' => bbp_get_forum_post_type(), 'post_status' => bbp_get_public_status_id(), 'is_archive' => true, 'comment_status' => 'closed' ) ); // Single Forum } elseif ( bbp_is_forum_edit() ) { // Reset post bbp_theme_compat_reset_post( array ( 'ID' => bbp_get_forum_id(), 'post_title' => bbp_get_forum_title(), 'post_author' => bbp_get_forum_author_id(), 'post_date' => 0, 'post_content' => $bbp_shortcodes ->display_forum_form(), 'post_type' => bbp_get_forum_post_type(), 'post_status' => bbp_get_forum_visibility(), 'is_single' => true, 'comment_status' => 'closed' ) ); } elseif ( bbp_is_single_forum() ) { // Reset post bbp_theme_compat_reset_post( array ( 'ID' => bbp_get_forum_id(), 'post_title' => bbp_get_forum_title(), 'post_author' => bbp_get_forum_author_id(), 'post_date' => 0, 'post_content' => $bbp_shortcodes ->display_forum( array ( 'id' => bbp_get_forum_id() ) ), 'post_type' => bbp_get_forum_post_type(), 'post_status' => bbp_get_forum_visibility(), 'is_single' => true, 'comment_status' => 'closed' ) ); /** Topics ************************************************************/ // Topic archive } elseif ( bbp_is_topic_archive() ) { // Page exists where this archive should be $page = bbp_get_page_by_path( bbp_get_topic_archive_slug() ); // Should we replace the content... if ( empty ( $page ->post_content ) ) { $new_content = $bbp_shortcodes ->display_topic_index(); // ...or use the existing page content? } else { $new_content = apply_filters( 'the_content' , $page ->post_content ); } // Should we replace the title... if ( empty ( $page ->post_title ) ) { $new_title = bbp_get_topic_archive_title(); // ...or use the existing page title? } else { $new_title = apply_filters( 'the_title' , $page ->post_title ); } // Reset post bbp_theme_compat_reset_post( array ( 'ID' => ! empty ( $page ->ID ) ? $page ->ID : 0, 'post_title' => bbp_get_topic_archive_title(), 'post_author' => 0, 'post_date' => 0, 'post_content' => $new_content , 'post_type' => bbp_get_topic_post_type(), 'post_status' => bbp_get_public_status_id(), 'is_archive' => true, 'comment_status' => 'closed' ) ); // Single Topic } elseif ( bbp_is_topic_edit() || bbp_is_single_topic() ) { // Split if ( bbp_is_topic_split() ) { $new_content = bbp_buffer_template_part( 'form' , 'topic-split' , false ); // Merge } elseif ( bbp_is_topic_merge() ) { $new_content = bbp_buffer_template_part( 'form' , 'topic-merge' , false ); // Edit } elseif ( bbp_is_topic_edit() ) { $new_content = $bbp_shortcodes ->display_topic_form(); // Single } else { $new_content = $bbp_shortcodes ->display_topic( array ( 'id' => bbp_get_topic_id() ) ); } // Reset post bbp_theme_compat_reset_post( array ( 'ID' => bbp_get_topic_id(), 'post_title' => bbp_get_topic_title(), 'post_author' => bbp_get_topic_author_id(), 'post_date' => 0, 'post_content' => $new_content , 'post_type' => bbp_get_topic_post_type(), 'post_status' => bbp_get_topic_status(), 'is_single' => true, 'comment_status' => 'closed' ) ); /** Replies ***********************************************************/ // Reply archive } elseif ( is_post_type_archive( bbp_get_reply_post_type() ) ) { // Reset post bbp_theme_compat_reset_post( array ( 'ID' => 0, 'post_title' => __( 'Replies' , 'buddyboss' ), 'post_author' => 0, 'post_date' => 0, 'post_content' => $bbp_shortcodes ->display_reply_index(), 'post_type' => bbp_get_reply_post_type(), 'post_status' => bbp_get_public_status_id(), 'comment_status' => 'closed' ) ); // Single Reply } elseif ( bbp_is_reply_edit() || bbp_is_single_reply() ) { // Move if ( bbp_is_reply_move() ) { $new_content = bbp_buffer_template_part( 'form' , 'reply-move' , false ); // Edit } elseif ( bbp_is_reply_edit() ) { $new_content = $bbp_shortcodes ->display_reply_form(); // Single } else { $new_content = $bbp_shortcodes ->display_reply( array ( 'id' => get_the_ID() ) ); } // Reset post bbp_theme_compat_reset_post( array ( 'ID' => bbp_get_reply_id(), 'post_title' => bbp_get_reply_title(), 'post_author' => bbp_get_reply_author_id(), 'post_date' => 0, 'post_content' => $new_content , 'post_type' => bbp_get_reply_post_type(), 'post_status' => bbp_get_reply_status(), 'comment_status' => 'closed' ) ); /** Views *************************************************************/ } elseif ( bbp_is_single_view() ) { // Reset post bbp_theme_compat_reset_post( array ( 'ID' => 0, 'post_title' => bbp_get_view_title(), 'post_author' => 0, 'post_date' => 0, 'post_content' => $bbp_shortcodes ->display_view( array ( 'id' => get_query_var( bbp_get_view_rewrite_id() ) ) ), 'post_type' => '' , 'post_status' => bbp_get_public_status_id(), 'comment_status' => 'closed' ) ); /** Search ************************************************************/ } elseif ( bbp_is_search() ) { // Reset post bbp_theme_compat_reset_post( array ( 'ID' => 0, 'post_title' => bbp_get_search_title(), 'post_author' => 0, 'post_date' => 0, 'post_content' => $bbp_shortcodes ->display_search( array ( 'search' => get_query_var( bbp_get_search_rewrite_id() ) ) ), 'post_type' => '' , 'post_status' => bbp_get_public_status_id(), 'comment_status' => 'closed' ) ); /** Topic Tags ********************************************************/ // Topic Tag Edit } elseif ( bbp_is_topic_tag_edit() || bbp_is_topic_tag() ) { // Stash the current term in a new var set_query_var( 'bbp_topic_tag' , get_query_var( 'term' ) ); // Show topics of tag if ( bbp_is_topic_tag() ) { $new_content = $bbp_shortcodes ->display_topics_of_tag( array ( 'id' => bbp_get_topic_tag_id() ) ); // Edit topic tag } elseif ( bbp_is_topic_tag_edit() ) { $new_content = $bbp_shortcodes ->display_topic_tag_form(); } // Reset the post with our new title bbp_theme_compat_reset_post( array ( 'ID' => 0, 'post_author' => 0, 'post_date' => 0, 'post_content' => $new_content , 'post_type' => '' , 'post_title' => sprintf( __( 'Discussion Tag: %s' , 'buddyboss' ), '<span>' . bbp_get_topic_tag_name() . '</span>' ), 'post_status' => bbp_get_public_status_id(), 'comment_status' => 'closed' ) ); } /** * Bail if the template already matches a Forums template. This includes * archive-* and single-* WordPress post_type matches (allowing * themes to use the expected format) as well as all Forums-specific * template files for users, topics, forums, etc... * * We do this after the above checks to prevent incorrect 404 body classes * and header statuses, as well as to set the post global as needed. * */ if ( bbp_is_template_included() ) { return $template ; /** * If we are relying on Forums' built in theme compatibility to load * the proper content, we need to intercept the_content, replace the * output, and display ours instead. * * To do this, we first remove all filters from 'the_content' and hook * our own function into it, which runs a series of checks to determine * the context, and then uses the built in shortcodes to output the * correct results from inside an output buffer. * * Uses bbp_get_theme_compat_templates() to provide fall-backs that * should be coded without superfluous mark-up and logic (prev/next * navigation, comments, date/time, etc...) * * Hook into the 'bbp_get_bbpress_template' to override the array of * possible templates, or 'bbp_bbpress_template' to override the result. */ } elseif ( bbp_is_theme_compat_active() ) { bbp_remove_all_filters( 'the_content' ); $template = bbp_get_theme_compat_templates(); } return apply_filters( 'bbp_template_include_theme_compat' , $template ); } |
Changelog
Version | Description |
---|---|
bbPress (r3032) | Introduced. |
Questions?
We're always happy to help with code or other questions you might have! Search our developer docs, contact support, or connect with our sales team.