首先,我使用shortcode API,并将这些代码放入wp function.php中,并且可以正常工作。这里是代码;
function example() {
include('index.php' );
}
function examp_func() {
ob_start();
example();
$output = ob_get_contents();
ob_end_clean();
return $output;
}
add_shortcode( 'example', 'examp_func' );
接下来,对于我的index.php文件。我为链接创建了代码(我需要此超链接才能在index.php页面上执行我的create.php文件)。
echo "<a href= 'create.php' class='examplecss'>Create New</a>";
当我单击超链接时,找不到页面。 我检查了网址,这是正确的。我在整个互联网上进行搜索,但尚未找到。非常感谢您提出任何建议。