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.
我需要为可以访问我的 wp 插件然后重定向到主页的入站广告商链接创建一个静态 php 登录页面 (landing.php)。是否可以从“常规”.php 文件访问我的插件?如果是这样,怎么做?或者有没有更好的方法在 WP 中做到这一点,它不加载模板,只访问我的 wp 插件并重定向到主页?
将此行放在登陆 php 的顶部:
require('/path/to/wp-load.php');
之后,您可以使用所有 WordPress 功能,包括您的插件。