我是Php和word-press世界的新手。 我想用页面ID编辑插件。 我尝试使用以下选项来获取页面ID,但我无法得到任何内容。
get_the_ID()
$post->ID
var_dump($wp_query)
all返回null。
我正在编辑的php文件位于名为inlude of plugin folder
的文件夹中但get_the_ID()在php文件中工作正常,该文件位于此文件夹的外部,并且是该插件的根文件夹。
plugin folder
include
edit_page.php(Here i'm facing problem)
plugin.php
您的及时回复将受到高度赞赏。
提前致谢。
答案 0 :(得分:1)
尝试:
global $post;
$page_ID = $post->ID;
var_dump($page_ID);