devgeniem/wp-no-admin-ajax
Composer 安装命令:
composer require devgeniem/wp-no-admin-ajax
包简介
A WordPress plugin that lightens the WP AJAX routine and directs the requests to front-end rather than admin back-end.
README 文档
README
WP Plugin: No-Admin-Ajax
A WordPress plugin that changes the WP AJAX routine and rewrites the ajax requests to custom url rather than /wp-admin/admin-ajax.php back-end.
Install
Recommended installation to WP project is through composer:
$ composer require devgeniem/wp-no-admin-ajax
Use cases
- Rewrite all admin-ajax.php queries into custom url so you can allow
/wp-admin/to only certain IP-addresses. - You can use this to confuse bots which might try to use vulnerabilities in admin-ajax.php.
Configuration
Variables
This plugin url is by default /no-admin-ajax/. You can use filters to change it or you can set the default value by yourself by using:
// This turns the no admin ajax url to -> /ajax/ define('WP_NO_ADMIN_AJAX_URL','ajax');
Notice: Value set here can be filtered too, this just sets the starting point for the custom url.
Notice 2: After plugin installation and other changes be sure to refresh your permalinks by just going to Settings > Permalinks > and saving it without any modification.
Hooks & Filters
You can customize the url by using filter no-admin-ajax/keyword.
<?php // This changes /no-admin-ajax/ -> /ajax/ add_filter( 'no-admin-ajax/keyword', 'my_custom_no_admin_ajax_url' ); function my_custom_no_admin_ajax_url( $ajax_url ) { return "ajax"; }
You can run commands before ajax calls by using no-admin-ajax/before or no-admin-ajax/before/{action}
<?php // Writes log entries after hearthbeat action for debugging do_action( 'no-admin-ajax/before/heartbeat' , 'my_custom_no_admin_ajax_debug' ); function my_custom_no_admin_ajax_debug() { error_log( 'DEBUG | heartbeat action was run by: '.$_SERVER[“REMOTE_ADDR”] ); }
devgeniem/wp-no-admin-ajax 适用场景与选型建议
devgeniem/wp-no-admin-ajax 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 23.29k 次下载、GitHub Stars 达 38, 最近一次更新时间为 2016 年 05 月 04 日, 在 PHP 生态内属于活跃度较高的组件。
我们在过去多个企业项目中使用过 devgeniem/wp-no-admin-ajax 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 devgeniem/wp-no-admin-ajax 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
统计信息
- 总下载量: 23.29k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 38
- 点击次数: 7
- 依赖项目数: 1
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2016-05-04
