在显示整个页面时执行函数

时间:2013-08-01 作者:Lucas Willems

如何仅在显示整个页面时才执行插件中的函数?

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

您可以执行的最后一个操作。。。

add_action(\'shutdown\', \'before_the_end_of_world\');

function before_the_end_of_world() {
   die(\'I will miss you, wordpress\');
}

结束

相关推荐

如何在u-plugins文件夹中使用WooCommerce?

我不希望客户端错误地停用woocommerce插件。我最近在wordpress中遇到了一个叫做必须使用插件的概念。(http://codex.wordpress.org/Must_Use_Plugins)我只是想知道是否有可能将woocommerce作为必备插件使用。