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.
我想在 edit.php 文件中的管理帖子列表下方添加一个 html 标记。到目前为止,我通过使用“admin_init”操作钩子成功地做到了这一点,但是,html 标记也出现在其他页面中(例如 post-new.php),这不是我想要的。我怎样才能只定位edit.php文件?谢谢
如果您的代码将内容放在您想要的页面上,但页面太多,请尝试以下操作:
if (basename($_SERVER['SCRIPT_NAME']) == 'edit.php') { // your code here }
这会将其限制为仅 edit.php 脚本。
$_REQUEST['action']您可能还需要通过检查和来测试查询参数“action”和“action2”的某些值$_REQUEST['action2']。
$_REQUEST['action']
$_REQUEST['action2']