如何打印出单个样式表或Java脚本链接?

时间:2012-03-08 作者:cwd

I know I can use enqueue_script and enqueue_style to register scripts and stylesheets, however I\'m trying to print out just the link to the adminbar css:

<link rel=\'stylesheet\' id=\'admin-bar-css\' \\
href=\'http://mysite.com/wp-includes/css/admin-bar.css?ver=20111209\' type=\'text/css\' media=\'all\' />

I could just include that text on my page but I was hoping for something like

wp_print_script(\'admin-bar-css\')

Is there such a thing?

1 个回复
最合适的回答,由SO网友:helgatheviking 整理而成

要打印单一样式,请执行以下操作:

wp_print_styles(\'admin-bar\');
要打印单个脚本,请执行以下操作:

wp_print_scripts(\'admin-bar\');
请注意,必须首先使用wp\\u register\\u style()或wp\\u register\\u script()注册句柄。

http://codex.wordpress.org/Function_Reference/wp_register_scripthttp://codex.wordpress.org/Function_Reference/wp_register_style

结束

相关推荐

WordPress的哪些.php文件需要通过HTTP直接访问?

我正在努力加强WordPress安装的安全性,其中一件看起来可能是个好主意的事情是阻止所有内部使用。php文件无法通过HTTP直接访问。例如,http://MYSITE/blog/xmlrpc.php 需要保持直接访问,但没有理由http://MYSITE/blog/wp-load.php 不应该给404。问题是:我在哪里可以得到完整的Wordpress股票列表。可以合法出现在URL中的php文件?此外,我使用mod\\u rewrite删除顶层index.php 从我所有发布的URL中--这是否意味着我