Tweaks to the action in get_template_part(). fixes #12248, fixes #12941.

git-svn-id: https://develop.svn.wordpress.org/trunk@14047 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Andrew Nacin 2010-04-10 10:40:47 +00:00
parent 9b44257e39
commit 2254f7d6e9

View File

@ -114,7 +114,7 @@ function get_sidebar( $name = null ) {
* @param string $name The name of the specialised template.
*/
function get_template_part( $slug, $name = null ) {
do_action( "get_template_part{$slug}", $name );
do_action( "get_template_part_{$slug}", $slug, $name );
$templates = array();
if ( isset($name) )