WordPress 自定义文章类型

自带的文章类型:

  1. 文章类型 post
  2. 页面类型 page
  3. 附件类型 attachment
  4. 菜单类型 menu
  5. 版本修订类型 revision

需要自定义文章类型,在function.php:


function wpkt_custom_post_type() {

  $labels = array(
    'name' => '图片',
    'singular_name' => '图片',
    'add_new' => '发布图片',
    'all_items' => '图片列表',
  );

  //
  $args = [
    'labels' => $labels,
    'public' => true,
    'has_archive' => true,
    'rewrite' => [
      'slug' => 'pics',
    ],
  ];

  register_post_type('pics', $args);
}

add_action('init', 'wpkt_custom_post_type');

WordPress 自定义分类法:

自带的分类方式:

1. 分类目录(category),是针对文章的一种分类方式

2. 标签(post_tag),也是针对文章的一种分类方式

3. 形式(post_format), 还是针对文章的一种分类方式

4. 菜单(nav_menu),针对菜单(menu)的一种分类方式

添加自定义分类方式:

  • function.php
function wpkt_create_tax() {
  $labels = array(
    'name' => '图片分类',
    'singular_name' => '图片分类',
    'search_items' => '搜索图片分类',
    'popular_items' => '',
    'all_items' => '所有图片分类',
    'parent_item' => '父级图片分类',
    'parent_item_colon' => '父级图片分类',
    'edit_item' => '编辑图片分类',
    'view_item' => '查看图片分类',
    'add_new_item' => '添加图片分类',
    'update_item' => '更新图片分类',
    'add_new_item' => '添加新图片分类',
    'new_item_name' => '新图片分类名',
    'separate_items_with_commas' => '',
    'add_or_remove_items' => '',
    'choose_from_most_used' => '',
    'not_found' => '未找到分类',
    'no_terms' => '没有图片分类',
    'iterms_list_navigation' => '分类列表导航',
  );

  $args = array(
    'labels' => $labels,
    'description' => '',
    'public' => true,
    'publicly_queryable' => true,
    'hierarchical' => false,
    'show_ui' => true,
    'show_in_menu' => true,
    'show_in_nav_menus' => true,
    'show_tagcloud' => true,
    'show_in_quick_edit' => true,
    'show_admin_column' => true,
    'meta_box_cb' => null,
    'capabilities' => array(),
    'rewrite' =>true,
    'query_var' => true,
    'update_count_callback' => '',
  );

  // pic_cat 分类方式的名称,即 pic_cat 是针对 pics 创建的
  // pics 是上面创建(wpkt_custom_post_type)的 post type
  // 两者要关联起来
  register_taxonomy('pic_cat', 'pics', $args);
}

add_action('init', 'wpkt_create_tax');

WordPress 自定义字段:

参考:https://www.wpdaxue.com/add-and-display-custom-fields-on-woocommerce.html

How to Add WooCommerce Custom Fields to a Product

添加自定义字段:

add_action( 'woocommerce_product_options_stock_fields', 'my_restock_notice_field' );
function my_restock_notice_field() {
        global $woocommerce, $post;
        woocommerce_wp_textarea_input(
                array(
                        'id'          => 'my_restock_notice',
                        'placeholder' => 'Back in stock next week!',
                        'label'       => 'Restock notice',
                        'description' => 'Let your customers know when the product will be back in stock.',
                        'desc_tip'    => 'true',
                )
        );
}

保存自定义字段:

add_action( 'woocommerce_process_product_meta', 'my_restock_notice_save_data' );
function my_restock_notice_save_data( $post_id ) {
        if ( 'no' === get_option( 'woocommerce_manage_stock' ) ) {
                return;
        }

        $my_restock_notice_textarea = $_POST['my_restock_notice'];
        if ( ! empty( $my_restock_notice_textarea ) ) {
                update_post_meta( $post_id, 'my_restock_notice', esc_html( $my_restock_notice_textarea ) );
        }
}

显示自定义字段:

$notice = get_post_meta( $product->get_ID(), 'my_restock_notice', true );

参考:

https://www.wpdaxue.com/add-and-display-custom-fields-on-woocommerce.html 加字段

https://wordpress.org/plugins/woo-extra-product-options/ 插件实现 增加自定义字段

https://www.cloudways.com/blog/woocommerce-product-sort-and-display/ 自定义排序

Powered by BetterDocs