如何使用PHP在没有插件的情况下在页面上显示自定义帖子

时间:2019-06-01 15:26:14

标签: php wordpress

我在下面使用PHP创建了自定义帖子类型:

  // Product Custom Post Type
  function product_init() {
      // set up product labels
      $labels = array(
    'name' => 'Products',
    'singular_name' => 'Product',
    'add_new' => 'Add New Product',
    'add_new_item' => 'Add New Product',
    'edit_item' => 'Edit Product',
    'new_item' => 'New Product',
    'all_items' => 'All Products',
    'view_item' => 'View Product',
    'search_items' => 'Search Products',
    'not_found' =>  'No Products Found',
    'not_found_in_trash' => 'No Products found in Trash', 
    'parent_item_colon' => '',
    'menu_name' => 'Products',
);

// register post type
$args = array(
    'labels' => $labels,
    'public' => true,
    'has_archive' => true,
    'show_ui' => true,
    'capability_type' => 'post',
    'hierarchical' => false,
    'rewrite' => array('slug' => 'product'),
    'query_var' => true,
    'menu_icon' => 'dashicons-randomize',
    'supports' => array(
        'title',
        'editor',
        'excerpt',
        'trackbacks',
        'custom-fields',
        'comments',
        'revisions',
        'thumbnail',
        'author',
        'page-attributes'
    )
   );
      register_post_type( 'product', $args );

     // register taxonomy
     register_taxonomy('product_category', 'product', array('hierarchical' 
     => true, 'label' => 'Category', 'query_var' => true, 'rewrite' => 
  array( 
  'slug' => 'product-category' )));
  }
  add_action( 'init', 'product_init' );

现在,我想知道如何在不使用插件和PHP的情况下,从首页的产品类别,关于页面(在此处输入静态页面)显示产品

我以前尝试使用查询var来执行此操作,但它没有显示。

0 个答案:

没有答案