WordPress插件文件未加载自定义主题

时间:2018-07-14 09:56:14

标签: wordpress wordpress-theming custom-wordpress-pages

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

切换到默认主题插件时,文件将正确加载到同一页面上。 我不确定是否遗漏了一些东西,因为其中包括我可以找到的所有动作挂钩。 任何指导或帮助将不胜感激,谢谢。

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

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>

1 个答案:

答案 0 :(得分:0)

我将浏览该插件的代码,以查看它实际挂接的内容,并确定主题在特定页面上加载的模板中是否缺少某些内容。