WordPress中的页面类别

时间:2015-07-13 11:36:53

标签: wordpress custom-wordpress-pages

我需要对WordPress的搜索结果进行分类,我通过在帖子和自定义帖子类型中添加类别来实现这一点。现在,只有页面列出没有任何类别,我认为也可以向页面添加类别,但我不知道它的后果。

请您分享您的想法和经验。

谢谢

2 个答案:

答案 0 :(得分:0)

Wordpress不提供在页面中创建类别的选项。

可以做的一件事是在搜索查询中进行修改 这将仅搜索所有页面。

function SearchFilter($query) {
    if ($query->is_search) {
       $query->set('post_type', 'page');
    }
    return $query;
    }

    add_filter('pre_get_posts','SearchFilter');

如果您只想在搜索中显示页面,请在某些特定条件下添加此挂钩。

其他方面将显示页面以外的所有内容。因此,您必须按ID的

排除页面
function SearchFilter($query) {
    if ($query->is_search) {
       $excludeId = array(23,23,23);
       $query->set('post__not_in', array($excludeId));
    }
    return $query;
    }

    add_filter('pre_get_posts','SearchFilter');  

答案 1 :(得分:0)

WordPress本身并不具备您想要的全局分类法。 WordPress中的类别与博客文章相关联。

为了实现这一目标,我会结合使用令人难以置信的Advanced Custom Fields(ACF)插件并修改functions.php,为您的网站添加自定义分类,并将其应用于所有后期类型。

第1步

在functions.php中,制作一个这样的自定义分类(根据您的需要进行修改):

// add_action registers the taxonomy into wordpress
add_action( 'init', 'setup_my_tax' );

// this function sets up the taxonomy to whatever standards you want
// reference register_taxonomy on codex.wordpress.org
function setup_my_tax() 

  // first parameter becomes the slug of the tax
  register_taxonomy( 'capabilities', array( 'post' ), array(

    // labels will determine how it show up in a menu
    'labels' => array(
      'add_new_item' => 'Add New ',
      'all_items' => 'All Capabilities',
      'edit_item' => 'Edit Capability',
      'menu_name' => 'Capabilities',
      'name' => 'Capabilities',
      'new_item' => 'New Capability',
      'not_found' => 'No Capabilities Found',
      'not_found_in_trash' => 'No Capabilities Found in Trash',
      'parent' => 'Parent of Capability',
      'search_items' => 'Search Capabilities',
      'singular_name' => 'Capability',
      'view_item' => 'View Capability'
    ),

    // important individual settings from register_taxonomy
    'hierarchical' => true,
    'public' => true,
    'query_var' => true,
    'show_admin_column' => true,
    'show_ui' => true
  ));
}

第2步

安装ACF后,您将使用GUI创建包含此分类的自定义字段集。自定义字段集下方是rule个选项,可显示如何将自定义位应用于所有实体。

enter image description here

第3步

page.php和其他模板中,您可以参考您的分类术语:

// Put the capabilities into an array variable
$capObjects = get_field('capabilities');

// Iterate through the the array of tags and output them
// In WordPress, you have to use the term ID to lookup the term name
foreach ($capObjects as $capObject):
  echo '<li class="capabilities-item">';
  echo '<a href="' . get_term_link($capObject) . '">' . $capObject->name . '</a> ';
  echo '</li>';
endforeach;

现在,您可以通过涵盖所有类型内容的真实代码调整搜索模板。