Wordpress:创建自定义Wordpress钩子
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Wordpress:创建自定义Wordpress钩子相关的知识,希望对你有一定的参考价值。
Create your own wordpress hooks easily and simply. Just rename the function to whatever you like.
/** * Usage: add_action('custom_hook', 'my_new_function') * Just place custom_hook(); somewhere in your theme. **/ function custom_hook(){ do_action('custom_hook'); } function my_new_function(){ //do something }
以上是关于Wordpress:创建自定义Wordpress钩子的主要内容,如果未能解决你的问题,请参考以下文章