wordpress:如何向帖子添加层次结构

时间:2012-05-25 08:19:10

标签: wordpress post hierarchy

我正在wordpress平台上创建一个网站,我希望能够发布我自己的书籍文本。所以我想要的是有一种某种层次结构,我会在其中添加一个帖子然后添加一些帖子(章节)。我发现了这个:

register_post_type( 'post', array(
        'labels' => array(
            'name_admin_bar' => _x( 'Post', 'add new on admin bar' ),
        ),
        'public'  => true,
        '_builtin' => true, /* internal use only. don't use this when registering your own post type. */
        '_edit_link' => 'post.php?post=%d', /* internal use only. don't use this when registering your own post type. */
        'capability_type' => 'post',
        'map_meta_cap' => true,
        'hierarchical' => false,
        'rewrite' => false,
        'query_var' => false,
        'supports' => array( 'title', 'editor', 'author', 'thumbnail', 'excerpt', 'trackbacks', 'custom-fields', 'comments', 'revisions', 'post-formats' ),
    ) );

并尝试制作'hierarchical"=>true,但没有效果。有人可以帮忙吗?

8 个答案:

答案 0 :(得分:4)

这是我的解决方法。这实现了你想要的,能够为内置的帖子类型帖子设置帖子父母。您可以通过向registred_post_type操作挂钩添加操作来实现此目的。只需将其添加到主题的functions.php。

add_action('registered_post_type', 'igy2411_make_posts_hierarchical', 10, 2 );

// Runs after each post type is registered
function igy2411_make_posts_hierarchical($post_type, $pto){

    // Return, if not post type posts
    if ($post_type != 'post') return;

    // access $wp_post_types global variable
    global $wp_post_types;

    // Set post type "post" to be hierarchical
    $wp_post_types['post']->hierarchical = 1;

    // Add page attributes to post backend
    // This adds the box to set up parent and menu order on edit posts.
    add_post_type_support( 'post', 'page-attributes' );

}

为了使帖子分层可能有所帮助,可能有很多原因。我的用例是客户希望将他们(已经存在的)帖子构建成问题,其中子帖是一个问题的文章(父帖)。

通过将查询限制为仅显示没有父项的帖子,可以轻松实现。

 'post_parent' => 0,

在您的查询$ args。

答案 1 :(得分:3)

WP 4.9。*

上面的解决方法让友情网址变得疯狂。

我的解决方案是将层次结构添加到任何现有的帖子类型:

add_filter( 'register_post_type_args', 'add_hierarchy_support', 10, 2 );
function add_hierarchy_support( $args, $post_type ){

    if ($post_type === 'post') { // <-- enter desired post type here

        $args['hierarchical'] = true;
        $args['supports'] = array_merge($args['supports'], array ('page-attributes') );
    }

    return $args;
}

在/wp-admin/options-permalink.php重置wp设置

答案 2 :(得分:2)

我来到这里的目的是实现

  1. 在post_type帖子中添加页面属性以添加父帖子
  2. 能够在post_type帖子中添加页面模板
  3. 能够在post_type帖子上获得分层的永久链接结构

我能够使用the accepted answer完成1和2,但不能完成3。

注意:要使2完全发挥作用,您需要在页面模板的模板注释中指定post_type,如下所示:

<?php
/*
Template Name: Your Post Template Name
Template Post Type: post
*/

对于3,我发现一个插件破坏了我的post_type页面,并且它是很多非常糟糕的,未维护的代码。

所以我写了一个解决方案来完成所有这些工作,是从this answer借来的:

(经过4.9.8测试)

<?php

add_action('registered_post_type', 'make_posts_hierarchical', 10, 2 );

// Runs after each post type is registered
function make_posts_hierarchical($post_type, $pto){

    // Return, if not post type posts
    if ($post_type != 'post') return;

    // access $wp_post_types global variable
    global $wp_post_types;

    // Set post type "post" to be hierarchical
    $wp_post_types['post']->hierarchical = 1;

    // Add page attributes to post backend
    // This adds the box to set up parent and menu order on edit posts.
    add_post_type_support( 'post', 'page-attributes' );

}

/**
 * Get parent post slug
 * 
 * Helpful function to get the post name of a posts parent
 */
function get_parent_post_slug($post) {
  if (!is_object($post) || !$post->post_parent) {
    return false;
  }

  return get_post($post->post_parent)->post_name;
}

/**
 * 
 * Edit View of Permalink
 * 
 * This affects editing permalinks, and $permalink is an array [template, replacement]
 * where replacement is the post_name and template has %postname% in it.
 * 
 **/
add_filter('get_sample_permalink', function($permalink, $post_id, $title, $name, $post) {
  if ($post->post_type != 'post' || !$post->post_parent) {
    return $permalink;
  }

  // Deconstruct the permalink parts
  $template_permalink = current($permalink);
  $replacement_permalink = next($permalink);

  // Find string
  $postname_string = '/%postname%/';

  // Get parent post
  $parent_slug = get_parent_post_slug($post);

  $altered_template_with_parent_slug = '/' . $parent_slug . $postname_string;
  $new_template = str_replace($postname_string, $altered_template_with_parent_slug, $template_permalink);

  $new_permalink = [$new_template, $replacement_permalink];

  return $new_permalink;
}, 99, 5);

/**
 * Alter the link to the post
 * 
 * This affects get_permalink, the_permalink etc. 
 * This will be the target of the edit permalink link too.
 * 
 * Note: only fires on "post" post types.
 */
add_filter('post_link', function($post_link, $post, $leavename){

  if ($post->post_type != 'post' || !$post->post_parent) {
    return $post_link;
  }

  $parent_slug = get_parent_post_slug($post);
  $new_post_link = str_replace($post->post_name, $parent_slug . '/' . $post->post_name, $post_link);

  return $new_post_link;
}, 99, 3);

/**
 * Before getting posts
 * 
 * Has to do with routing... adjusts the main query settings
 * 
 */
add_action('pre_get_posts', function($query){
  global $wpdb, $wp_query;

  $original_query = $query;
  $uri = $_SERVER['REQUEST_URI'];

  // Do not do this post check all the time
  if ( $query->is_main_query() && !is_admin()) {

    // get the post_name
    $basename = basename($uri);
    // find out if we have a post that matches this post_name
    $test_query = sprintf("select * from $wpdb->posts where post_type = '%s' and post_name = '%s';", 'post', $basename);
    $result = $wpdb->get_results($test_query);

    // if no match, return default query, or if there's no parent post, this is not necessary
    if (!($post = current($result)) || !$post->post_parent) {
      return $original_query;
    }

    // get the parent slug
    $parent_slug = get_parent_post_slug($post);
    // concat the parent slug with the post_name to get most of the url
    $hierarchal_slug = $parent_slug . '/' . $post->post_name;

    // if the concat of parent-slug/post-name is not in the uri, this is not the right post.
    if (!stristr($uri, $hierarchal_slug)) {
      return $original_query;
    }

    // pretty high confidence that we need to override the query.
    $query->query_vars['post_type'] = ['post'];
    $query->is_home     = false; 
    $query->is_page     = true;  
    $query->is_single   = true; 
    $query->queried_object_id = $post->ID;  
    $query->set('page_id', $post->ID);

    return $query;
  }


}, 1);

您可以将其保存到文件custom-posts-hierarchy.php中,并将其包含在主题中的functions.php文件中,也可以添加到顶部:

/*
Plugin Name: Custom Posts Hierarchy
Plugin URI:
Description: Add page attributes to posts and support hiearchichal
Author: Angela Murrell
Version:
Author URI: 
*/

并将其放入您的plugins文件夹中。祝你好运!

答案 3 :(得分:1)

Wordpress中的

帖子应该是典型的按时间顺序排列的博客文章。 Pages 是针对静态内容制作的,它们可以采用开箱即用的分层结构进行组织。

对于任何页面,您都可以选择父页面。这样,您可以创建具有多个子级的嵌套层次结构。听起来像你需要的。

查看Wordpress Documentation了解详情。

如果您有一个深度复杂的树结构,插件可能会帮助您管理它,例如Wordpress Page Tree。它提供了比默认Wordpress页面列表更好的界面。

答案 4 :(得分:0)

最佳解决方案是创建自定义分类[1]:http://codex.wordpress.org/Function_Reference/register_taxonomy并创建主要书籍或其他内容。

答案 5 :(得分:0)

使用CPT UI之类的插件,您可以创建自定义帖子类型并将其设置为具有分层树。

然后只检查是否为此自定义帖子类型设置了帖子类型page-attribute,并且您的帖子现在具有分层状态。

https://wordpress.org/plugins/custom-post-type-ui/

答案 6 :(得分:0)

存在插件,它为post创建层次结构:

<强> https://wordpress.org/plugins/add-hierarchy-parent-to-post/

答案 7 :(得分:0)

这不是更好的选择吗?

register_post_type( 'MYPOSTTYPE',
    array(
        'labels' => array(
            'name' => __( 'MYPOSTTYPE' ),
            'singular_name' => __( 'MYPOSTTYPE' )
        ),
        'supports' => array('title', 'editor', 'page-attributes'),
        'public' => true,
        'has_archive' => true,
        'hierarchical' => true,
        'rewrite' => array('slug' => 'MYPOSTTYPE'),
    )
);

我已添加:

'hierarchical'=&gt;真,

它有效。