Wordpress 插件文件无法在自定义主题上加载

问题描述 投票:0回答:1

我有一个问题,自定义主题无法在自定义主题页面上加载插件文件。

切换到默认主题插件文件时,会在同一页面上正确加载。 我不确定我是否遗漏了一些东西,因为我发现强制的所有操作挂钩都包含在内。 任何指导或帮助将不胜感激,谢谢。

自定义主题页面设置如下:

header.php 内容:

<!doctype html>
<html lang="en-US">
<head>
<?php wp_head();?>
</head>

page-custom.php 内容:

<?php get_header(); ?>
<body>
<?php
// content
$content_post = get_post(125); // 125 equals id of the custom page
$content = $content_post->post_content;
$content = apply_filters('the_content', $content);
$content = str_replace(']]>', ']]&gt;', $content);
echo $content;

// footer
get_footer();
?>

footer.php 内容:

<?php
wp_footer();
?>
</body>
</html>
php wordpress wordpress-theming custom-wordpress-pages
1个回答
0
投票

我会查看插件的代码,看看它实际挂钩的内容,并确定主题在某个页面上加载的模板中是否缺少某些内容。

© www.soinside.com 2019 - 2024. All rights reserved.