您好,欢迎访问一九零五行业门户网

使用自定义帖子类型通过 WordPress 创建自定义常见问题解答系统

我最近与我的一位客户合作,她在她的工作领域担任专业顾问。她问我是否可以实施一个问答系统,确切地说是一个常见问题解答页面。我说,“当然,我们可以创建一个页面,然后用不同的样式粘贴问题和答案”,但她说她会创建不同的页面并对问题和答案进行分类,为了更有条理,她需要一个不同的方法。
为此,我将向您展示如何使用自定义帖子类型、分类法和短代码,通过几行简单的代码来处理她的请求。
自定义帖子类型和分类建立常见问题解答系统需要什么?
我们需要用于问题和答案的字段。我们需要类别来对不同类型的问题及其答案进行分类和区分。在我们的例子中,我们需要一个短代码来将这些问题组或所有问题嵌入到页面或帖子中。让我们首先创建自定义帖子类型。
第 1 步:创建自定义帖子类型当然,我们首先会为常见问题解答项目设置自定义帖子类型。我们将在 register_post_type() 函数的帮助下创建一个新的自定义帖子类型,但是如果您想要一个用于创建帖子类型的 gui,您可以使用generatewp 的帖子类型生成器工具生成它,就像我在这个例子:
<?phpif ( ! function_exists( 'tuts_faq_cpt' ) ) {// register custom post type function tuts_faq_cpt() { // these are the labels in the admin interface, edit them as you like $labels = array( 'name' => _x( 'faqs', 'post type general name', 'tuts_faq' ), 'singular_name' => _x( 'faq', 'post type singular name', 'tuts_faq' ), 'menu_name' => __( 'faq', 'tuts_faq' ), 'parent_item_colon' => __( 'parent item:', 'tuts_faq' ), 'all_items' => __( 'all items', 'tuts_faq' ), 'view_item' => __( 'view item', 'tuts_faq' ), 'add_new_item' => __( 'add new faq item', 'tuts_faq' ), 'add_new' => __( 'add new', 'tuts_faq' ), 'edit_item' => __( 'edit item', 'tuts_faq' ), 'update_item' => __( 'update item', 'tuts_faq' ), 'search_items' => __( 'search item', 'tuts_faq' ), 'not_found' => __( 'not found', 'tuts_faq' ), 'not_found_in_trash' => __( 'not found in trash', 'tuts_faq' ), ); $args = array( // use the labels above 'labels' => $labels, // we'll only need the title, the visual editor and the excerpt fields for our post type 'supports' => array( 'title', 'editor', 'excerpt', ), // we're going to create this taxonomy in the next section, but we need to link our post type to it now 'taxonomies' => array( 'tuts_faq_tax' ), // make it public so we can see it in the admin panel and show it in the front-end 'public' => true, // show the menu item under the pages item 'menu_position' => 20, // show archives, if you don't need the shortcode 'has_archive' => true, ); register_post_type( 'tuts_faq', $args ); } // hook into the 'init' action add_action( 'init', 'tuts_faq_cpt', 0 );}?>
提示:如果您的项目将涉及更多自定义帖子类型,这些类型可能比这个简单的常见问题解答帖子类型更复杂,我可以推荐一个名为 supercpt 的酷工具,它允许您创建新帖子类型具有更简单的代码。我也写了一篇关于supercpt的教程,你可以在这里查看。
第 2 步:创建自定义分类为了区分不同类型的问题(例如我的客户关于流产和产后抑郁症的问题和答案),我们需要一个类别系统。正如你们许多人已经知道的那样,wordpress 通过自定义分类法提供了此功能。
这里的基本函数是 register_taxonomy() 但同样,如果您需要图形界面,您可以使用generatewp 的分类生成器工具。
代码如下:
<?phpif ( ! function_exists( 'tuts_faq_tax' ) ) { // register custom taxonomy function tuts_faq_tax() { // again, labels for the admin panel $labels = array( 'name' => _x( 'faq categories', 'taxonomy general name', 'tuts_faq' ), 'singular_name' => _x( 'faq category', 'taxonomy singular name', 'tuts_faq' ), 'menu_name' => __( 'faq categories', 'tuts_faq' ), 'all_items' => __( 'all faq cats', 'tuts_faq' ), 'parent_item' => __( 'parent faq cat', 'tuts_faq' ), 'parent_item_colon' => __( 'parent faq cat:', 'tuts_faq' ), 'new_item_name' => __( 'new faq cat', 'tuts_faq' ), 'add_new_item' => __( 'add new faq cat', 'tuts_faq' ), 'edit_item' => __( 'edit faq cat', 'tuts_faq' ), 'update_item' => __( 'update faq cat', 'tuts_faq' ), 'separate_items_with_commas' => __( 'separate items with commas', 'tuts_faq' ), 'search_items' => __( 'search items', 'tuts_faq' ), 'add_or_remove_items' => __( 'add or remove items', 'tuts_faq' ), 'choose_from_most_used' => __( 'choose from the most used items', 'tuts_faq' ), 'not_found' => __( 'not found', 'tuts_faq' ), ); $args = array( // use the labels above 'labels' => $labels, // taxonomy should be hierarchial so we can display it like a category section 'hierarchical' => true, // again, make the taxonomy public (like the post type) 'public' => true, ); // the contents of the array below specifies which post types should the taxonomy be linked to register_taxonomy( 'tuts_faq_tax', array( 'tuts_faq' ), $args ); } // hook into the 'init' action add_action( 'init', 'tuts_faq_tax', 0 );}?>
就是这样!现在您有了一个常见问题解答帖子类型,其中的分类法称为“常见问题解答类别”,相互链接!检查您的管理面板,您将在“常见问题解答”下看到“常见问题解答类别”菜单项。
就像常规帖子类别一样,您可以在“常见问题解答类别”页面中添加、编辑或删除它们,也可以在编写新的常见问题解答项目时添加新类别。
第 3 步:创建 [faq] 简码有趣的部分来了:构建短代码。 (如果您读过我之前的帖子,您就会知道我是 wordpress 短代码的忠实粉丝。)我们基本上会将常见问题解答项目嵌入到帖子和页面中。
接下来会发生什么:
在我们新的自定义帖子类型中查询,使用短代码参数过滤其类别,将问题和答案显示为标题和内容,通过“更多...”链接显示答案摘录,由另一个短代码参数控制。让我们开始构建短代码。与上面的代码一样,我将添加一些有用的注释:
<?phpif ( ! function_exists( 'tuts_faq_shortcode' ) ) { function tuts_faq_shortcode( $atts ) { extract( shortcode_atts( array( // category slug attribute - defaults to blank 'category' => '', // full content or excerpt attribute - defaults to full content 'excerpt' => 'false', ), $atts ) ); $output = ''; // set the query arguments $query_args = array( // show all posts matching this query 'posts_per_page' => -1, // show the 'tuts_faq' custom post type 'post_type' => 'tuts_faq', // show the posts matching the slug of the faq category specified with the shortcode's attribute 'tax_query' => array( array( 'taxonomy' => 'tuts_faq_tax', 'field' => 'slug', 'terms' => $category, ) ), // tell wordpress that it doesn't need to count total rows - this little trick reduces load on the database if you don't need pagination 'no_found_rows' => true, ); // get the posts with our query arguments $faq_posts = get_posts( $query_args ); $output .= '<div class=tuts-faq>'; // handle our custom loop foreach ( $faq_posts as $post ) { setup_postdata( $post ); $faq_item_title = get_the_title( $post->id ); $faq_item_permalink = get_permalink( $post->id ); $faq_item_content = get_the_content(); if( $excerpt == 'true' ) $faq_item_content = get_the_excerpt() . '<a href=' . $faq_item_permalink . '>' . __( 'more...', 'tuts_faq' ) . '</a>'; $output .= '<div class=tuts-faq-item>'; $output .= '<h3 class=tuts-faq-item-title>' . $faq_item_title . '</h3>'; $output .= '<div class=tuts-faq-item-content>' . $faq_item_content . '</div>'; $output .= '</div>'; } wp_reset_postdata(); $output .= '</div>'; return $output; } add_shortcode( 'faq', 'tuts_faq_shortcode' );}?>
就是这样!现在我们有一个简洁的短代码来嵌入我们的问题和答案。您可以使用类名 tuts-faq、tuts-faq-item、tuts-faq-item-title 和 tuts-faq-item-content 对其进行样式设置。不过,即使您不包含额外的样式,也应该没问题。
第 4 步:总结代码由于这些代码不仅涉及前端样式,还引入新功能,因此它算作插件领域。这就是为什么我们必须将代码保存为插件。当我们这样做时,我们还应该在激活和停用时刷新重写规则。
完整代码如下:
<?php/*plugin name: simple faq systemplugin uri: http://code.tutsplus.com/description: helps you create an faq section for your wordpress website. shortcode usage: <code>[faq]</code>version: 1.0author: barış ünverauthor uri: http://hub.tutsplus.com/authors/baris-unverlicense: public domain*/if ( ! function_exists( 'tuts_faq_cpt' ) ) {// register custom post type function tuts_faq_cpt() { // these are the labels in the admin interface, edit them as you like $labels = array( 'name' => _x( 'faqs', 'post type general name', 'tuts_faq' ), 'singular_name' => _x( 'faq', 'post type singular name', 'tuts_faq' ), 'menu_name' => __( 'faq', 'tuts_faq' ), 'parent_item_colon' => __( 'parent item:', 'tuts_faq' ), 'all_items' => __( 'all items', 'tuts_faq' ), 'view_item' => __( 'view item', 'tuts_faq' ), 'add_new_item' => __( 'add new faq item', 'tuts_faq' ), 'add_new' => __( 'add new', 'tuts_faq' ), 'edit_item' => __( 'edit item', 'tuts_faq' ), 'update_item' => __( 'update item', 'tuts_faq' ), 'search_items' => __( 'search item', 'tuts_faq' ), 'not_found' => __( 'not found', 'tuts_faq' ), 'not_found_in_trash' => __( 'not found in trash', 'tuts_faq' ), ); $args = array( // use the labels above 'labels' => $labels, // we'll only need the title, the visual editor and the excerpt fields for our post type 'supports' => array( 'title', 'editor', 'excerpt', ), // we're going to create this taxonomy in the next section, but we need to link our post type to it now 'taxonomies' => array( 'tuts_faq_tax' ), // make it public so we can see it in the admin panel and show it in the front-end 'public' => true, // show the menu item under the pages item 'menu_position' => 20, // show archives, if you don't need the shortcode 'has_archive' => true, ); register_post_type( 'tuts_faq', $args ); } // hook into the 'init' action add_action( 'init', 'tuts_faq_cpt', 0 );}if ( ! function_exists( 'tuts_faq_tax' ) ) { // register custom taxonomy function tuts_faq_tax() { // again, labels for the admin panel $labels = array( 'name' => _x( 'faq categories', 'taxonomy general name', 'tuts_faq' ), 'singular_name' => _x( 'faq category', 'taxonomy singular name', 'tuts_faq' ), 'menu_name' => __( 'faq categories', 'tuts_faq' ), 'all_items' => __( 'all faq cats', 'tuts_faq' ), 'parent_item' => __( 'parent faq cat', 'tuts_faq' ), 'parent_item_colon' => __( 'parent faq cat:', 'tuts_faq' ), 'new_item_name' => __( 'new faq cat', 'tuts_faq' ), 'add_new_item' => __( 'add new faq cat', 'tuts_faq' ), 'edit_item' => __( 'edit faq cat', 'tuts_faq' ), 'update_item' => __( 'update faq cat', 'tuts_faq' ), 'separate_items_with_commas' => __( 'separate items with commas', 'tuts_faq' ), 'search_items' => __( 'search items', 'tuts_faq' ), 'add_or_remove_items' => __( 'add or remove items', 'tuts_faq' ), 'choose_from_most_used' => __( 'choose from the most used items', 'tuts_faq' ), 'not_found' => __( 'not found', 'tuts_faq' ), ); $args = array( // use the labels above 'labels' => $labels, // taxonomy should be hierarchial so we can display it like a category section 'hierarchical' => true, // again, make the taxonomy public (like the post type) 'public' => true, ); // the contents of the array below specifies which post types should the taxonomy be linked to register_taxonomy( 'tuts_faq_tax', array( 'tuts_faq' ), $args ); } // hook into the 'init' action add_action( 'init', 'tuts_faq_tax', 0 );}if ( ! function_exists( 'tuts_faq_shortcode' ) ) { function tuts_faq_shortcode( $atts ) { extract( shortcode_atts( array( // category slug attribute - defaults to blank 'category' => '', // full content or excerpt attribute - defaults to full content 'excerpt' => 'false', ), $atts ) ); $output = ''; // set the query arguments $query_args = array( // show all posts matching this query 'posts_per_page' => -1, // show the 'tuts_faq' custom post type 'post_type' => 'tuts_faq', // show the posts matching the slug of the faq category specified with the shortcode's attribute 'tax_query' => array( array( 'taxonomy' => 'tuts_faq_tax', 'field' => 'slug', 'terms' => $category, ) ), // tell wordpress that it doesn't need to count total rows - this little trick reduces load on the database if you don't need pagination 'no_found_rows' => true, ); // get the posts with our query arguments $faq_posts = get_posts( $query_args ); $output .= '<div class=tuts-faq>'; // handle our custom loop foreach ( $faq_posts as $post ) { setup_postdata( $post ); $faq_item_title = get_the_title( $post->id ); $faq_item_permalink = get_permalink( $post->id ); $faq_item_content = get_the_content(); if( $excerpt == 'true' ) $faq_item_content = get_the_excerpt() . '<a href=' . $faq_item_permalink . '>' . __( 'more...', 'tuts_faq' ) . '</a>'; $output .= '<div class=tuts-faq-item>'; $output .= '<h2 class=faq-item-title>' . $faq_item_title . '</h2>'; $output .= '<div class=faq-item-content>' . $faq_item_content . '</div>'; $output .= '</div>'; } wp_reset_postdata(); $output .= '</div>'; return $output; } add_shortcode( 'faq', 'tuts_faq_shortcode' );}function tuts_faq_activate() { tuts_faq_cpt(); flush_rewrite_rules();}register_activation_hook( __file__, 'tuts_faq_activate' );function tuts_faq_deactivate() { flush_rewrite_rules();}register_deactivation_hook( __file__, 'tuts_faq_deactivate' );?>
改进空间当我向我的客户展示如何使用它时,她对结果很满意。但在这里,我们可以使用更多功能扩展代码,例如...
手风琴效果:如果您想通过一些切换效果使常见问题解答部分更具吸引力,您可以使用一些很棒的 jquery 插件。如果您想使用 jquery ui,shane osbourne 提供了一个很棒的教程,介绍了如何使用。 分页:如果您对某个类别有很多问题和答案,并且不想一次显示所有项目,您可以通过更改 posts_per_page 参数来限制帖子数量自定义短代码的查询,并使用 wp_reset_postdata(); 代码在行下方添加分页链接所需的代码。请记住删除 'no_found_rows' => true, 行,但如果不删除它,分页将无法工作! 随机问题:假设您想在主页上显示一个随机问题和答案,并且希望它在每次页面刷新时进行更改。您需要做的就是前往自定义查询,将 posts_per_page 参数从 -1 更改为 1 并添加另一行代码 'orderby' => 'random', 和你'一切顺利!结论这就是您如何通过使用自定义帖子类型、自定义分类法和短代码在 wordpress 中构建简单的常见问题解答系统。我希望您喜欢本教程,并且可以在下一个项目中使用它。如果您喜欢这篇文章,请不要忘记分享它!
您对改进此常见问题解答系统有什么想法吗?在下面分享您的评论!
以上就是使用自定义帖子类型通过 wordpress 创建自定义常见问题解答系统的详细内容。
其它类似信息

推荐信息