自定义帖子类型的多个单个帖子

时间:2016-11-25 12:06:55

标签: wordpress wordpress-theming

Post可以在使用blog的{​​{1}}导航菜单中查看某些数据,并且单个帖子可以从index.php检索数据。我还可以从single.php导航菜单中查看另一个custom post type client,并使用Our- client。现在的问题是我还希望单个客户端使用自定义单页,因此我使用client template但是当我点击任意客户端时,它会导致single-client.php而不是single.php

2 个答案:

答案 0 :(得分:0)

您可以复制所有内容,例如: page.php,并将其粘贴到您自己的模板中。在代码的顶部,粘贴此

<?php
/**
 * Template Name: Your template name
 * 
 */

在此之后,当您在Wordpress中编辑页面时,您可以在“页面选项”中找到该模板。 看看这个以获取更多信息 https://developer.wordpress.org/themes/template-files-section/page-template-files/page-templates/

编辑:我刚刚再次阅读了您的问题,这似乎适合您:http://www.wpbeginner.com/wp-themes/create-custom-single-post-templates-for-specific-posts-or-sections-in-wordpress/

答案 1 :(得分:0)

我认为您已为两个页面使用了相同的模板名称。

For single-post.php
<?php 
/**
* Template Name: Your Single-Post page
*
*/
For single-client.php
<?php 
/**
* Template Name: Your Client page