bp_email_get_template( WP_Post $object )

Get the paths to possible templates for the specified email object.

Description

Parameters

$object

(Required) Post to get email template for.

Return

(array)

Source

File: bp-core/bp-core-functions.php

3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
function bp_email_get_template( WP_Post $object ) {
    $single = "single-{$object->post_type}";
 
    /**
     * Filter the possible template paths for the specified email object.
     *
     * @since BuddyPress 2.5.0
     *
     * @param array   $value  Array of possible template paths.
     * @param WP_Post $object WP_Post object.
     */
    return apply_filters( 'bp_email_get_template', array(
        "assets/emails/{$single}-{$object->post_name}.php",
        "{$single}-{$object->post_name}.php",
        "{$single}.php",
        "assets/emails/{$single}.php",
    ), $object );
}

Changelog

Changelog
Version Description
BuddyPress 2.5.0 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.