get_comments_popup_template [ WordPress Function ]
get_comments_popup_template ( No parameters )
| Uses: | |
| Returns: |
|
| Defined at: |
|
Soorgelijke functies: comments_template, get_home_template, get_attachment_template, get_front_page_template, comments_popup_script
Retrieve path of comment popup template in current or parent template.
Checks for comment popup template in current template, if it exists or in the parent template.
Source
<?php
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;
}
?>
Examples [ wp-snippets.com ]
Top Google zoekresultaten
- Function Reference/get comments popup template - WordPress Codex
Description. Retrieve path of comment popup template in current or parent template. Checks for comment popup template in current template, if it exists or in the ...
codex.wordpress.org - get_comments_popup_template() WordPress function reference ...
Retrieve path of comment popup template in current or parent template.
queryposts.com - get_comments_popup_template | Lovelog+*
2011年11月13日 ... get_comments_popup_template – WordPress ファンクションタグのリファレンス ... get_comments_popup_templateのファンクションタグ使用方法 ...
lovelog.eternal-tears.com - 常用函数-get_comments_popup_template() | WordPress啦!
常用函数-get_comments_popup_template(). 说明. 检索当前模板或父模板的评论 弹出式菜单的路径。 该函数判断弹出式菜单模板在当前模板或是在父模板中。若弹出 ...
www.wordpress.la