Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用错误插件。我想在 WordPress 博客站点中加载标题时生成一些错误或成功消息。
像:
if(is header load) { //run a action hook here //print success or error msgs through hook function }
建议在标题加载时显示消息的钩子操作。
下面的代码可能会有所帮助。您可以将此代码放在主题文件夹中的 functions.php 中。
function load_me_on_header() { // do something here ... like show error message. } add_action('wp_head','load_me_on_header');
您也可以以相同的方式使用 add_filter() 函数。当涉及内容处理时,过滤器更适合。