我已经注册了两种自定义帖子类型。现在我已经为帖子创建了一个模板,但WP没有调用它。
在函数中注册post类型。php:
function create_post_types() {
register_post_type(\'behandelingen\', array(
\'labels\' => array(
\'name\' => \'Behandelingen\',
\'all_items\' => \'All Posts\'
),
\'public\' => true
));
register_post_type(\'medewerkers\', array(
\'labels\' => array(
\'name\' => \'Medewerkers\',
\'all_items\' => \'All Posts\'
),
\'public\' => true
));
}
add_action(\'init\', \'create_post_types\');
自定义帖子部分在WP后端完成,我已经添加了帖子,看起来效果不错。
接下来,我添加了一个自定义帖子模板(“post-medewerkers.php”):
<!DOCTYPE html>
<html>
<head>
<title></title>
</head>
<body>
Test
</body>
</html>
当我转到自定义页面的永久链接时,它不会显示“Test”,但会显示索引中的内容。php。
我哪里出错了?为什么自定义模板没有注册?
谢谢