woocommerce_register_post_type_product хук-фильтрWC 1.0

Использование

add_filter( 'woocommerce_register_post_type_product', 'wp_kama_woocommerce_register_post_type_product_filter' );

/**
 * Function for `woocommerce_register_post_type_product` filter-hook.
 * 
 * @param  $array 
 *
 * @return 
 */
function wp_kama_woocommerce_register_post_type_product_filter( $array ){

	// filter...
	return $array;
}
$array
-

Где вызывается хук

WC_Post_Types::register_post_types()
woocommerce_register_post_type_product
woocommerce/includes/class-wc-post-types.php 318-369
apply_filters(
	'woocommerce_register_post_type_product',
	array(
		'labels'              => array(
			'name'                  => __( 'Products', 'woocommerce' ),
			'singular_name'         => __( 'Product', 'woocommerce' ),
			'all_items'             => __( 'All Products', 'woocommerce' ),
			'menu_name'             => _x( 'Products', 'Admin menu name', 'woocommerce' ),
			'add_new'               => __( 'Add New', 'woocommerce' ),
			'add_new_item'          => __( 'Add new product', 'woocommerce' ),
			'edit'                  => __( 'Edit', 'woocommerce' ),
			'edit_item'             => __( 'Edit product', 'woocommerce' ),
			'new_item'              => __( 'New product', 'woocommerce' ),
			'view_item'             => __( 'View product', 'woocommerce' ),
			'view_items'            => __( 'View products', 'woocommerce' ),
			'search_items'          => __( 'Search products', 'woocommerce' ),
			'not_found'             => __( 'No products found', 'woocommerce' ),
			'not_found_in_trash'    => __( 'No products found in trash', 'woocommerce' ),
			'parent'                => __( 'Parent product', 'woocommerce' ),
			'featured_image'        => __( 'Product image', 'woocommerce' ),
			'set_featured_image'    => __( 'Set product image', 'woocommerce' ),
			'remove_featured_image' => __( 'Remove product image', 'woocommerce' ),
			'use_featured_image'    => __( 'Use as product image', 'woocommerce' ),
			'insert_into_item'      => __( 'Insert into product', 'woocommerce' ),
			'uploaded_to_this_item' => __( 'Uploaded to this product', 'woocommerce' ),
			'filter_items_list'     => __( 'Filter products', 'woocommerce' ),
			'items_list_navigation' => __( 'Products navigation', 'woocommerce' ),
			'items_list'            => __( 'Products list', 'woocommerce' ),
			'item_link'             => __( 'Product Link', 'woocommerce' ),
			'item_link_description' => __( 'A link to a product.', 'woocommerce' ),
		),
		'description'         => __( 'This is where you can browse products in this store.', 'woocommerce' ),
		'public'              => true,
		'show_ui'             => true,
		'menu_icon'           => 'dashicons-archive',
		'capability_type'     => 'product',
		'map_meta_cap'        => true,
		'publicly_queryable'  => true,
		'exclude_from_search' => false,
		'hierarchical'        => false, // Hierarchical causes memory issues - WP loads all records!
		'rewrite'             => $permalinks['product_rewrite_slug'] ? array(
			'slug'       => $permalinks['product_rewrite_slug'],
			'with_front' => false,
			'feeds'      => true,
		) : false,
		'query_var'           => true,
		'supports'            => $supports,
		'has_archive'         => $has_archive,
		'show_in_nav_menus'   => true,
		'show_in_rest'        => true,
	)
)

Где используется хук в WooCommerce

Использование не найдено.