関数 get_comments_popup_template()
2014/12/17
関数 get_comments_popup_template()
定義ファイル :/blog/wp-includes/template.php
1 2 3 4 5 6 7 8 9 | function get_comments_popup_template() { $template = get_query_template( 'comments_popup', array( 'comments-popup.php' ) ); // Backward compat code will be removed in a future release if ('' == $template) $template = ABSPATH . WPINC . '/theme-compat/comments-popup.php'; return $template; } |