WordPress:Template Tags/comments popup script

来自站长百科
Xxf3325讨论 | 贡献2008年6月25日 (三) 11:02的版本 (新页面: == Description == Outputs the JavaScript code for a comments popup window. Used in tandem with [[WordPress:Template_Tags/comments_popup_link|comments_po...)
(差异) ←上一版本 | 最后版本 (差异) | 下一版本→ (差异)
跳转至: 导航、​ 搜索

Description

Outputs the JavaScript code for a comments popup window. Used in tandem with comments_popup_link(), this tag can be used anywhere within a template, though is typically placed within the <head> portion of a page.

Usage

%%% <?php comments_popup_script(width, height); ?> %%%

Example

Sets the popup window's width to 400 pixels, and height to 500 pixels.

<?php comments_popup_script(400, 500); ?>

Parameters

width
(integer) The width of the popup window. Defaults to 400 (pixels).
height
(integer) The height of the popup window. Defaults to 400 (pixels).

Related

模板:Tag Comments Tags

模板:PHP Function Tag Footer