samikeijonen / edd-members

EDD Members is an add-on Plugin for Easy Digital Downloads. You can set your membership site in minutes!
https://foxland.fi/downloads/edd-members/
26 stars 5 forks source link

Extend EDD template loader instead of registering a new one #6

Closed pippinsplugins closed 9 years ago

pippinsplugins commented 9 years ago

EDD's template loader API actually allows you to register a custom file location, so there's no need to use a customer template loader. For example, to register a "templates" folder in your plugin's directory (this comes straight from Software Licensing):

/**
 * Adds our templates dir to the EDD template stack
 *
 * @since 2.7
 */
function edd_sl_add_template_stack( $paths ) {

    $paths[ 51 ] = EDD_SL_PLUGIN_DIR . 'templates/';

    return $paths;

}
add_filter( 'edd_template_paths', 'edd_sl_add_template_stack' );
pippinsplugins commented 9 years ago

It saves a lot of code :)

samikeijonen commented 9 years ago

Oh didn't know about template loader API. Definitely gonna switch to this, thanks!

samikeijonen commented 9 years ago

This is why open source is so cool: 07276e0b31a710828846656d87e99f29061a8b0e.

pippinsplugins commented 9 years ago

:)

samikeijonen commented 9 years ago

See also commit 6b999b7817767ba30b83fe7d3b8064db681bfe86.