You appear to be a bot. Output may be restricted
Description
Returns the id of the set WooCommerce shop page.
Usage
$int = WooCommerce::get_shop_page_id();
Parameters
Returns
int The ID of the set page.
Source
File name: wordpress-seo/src/integrations/third-party/woocommerce.php
Lines:
1 to 7 of 7
protected function get_shop_page_id() { if ( ! \function_exists( 'wc_get_page_id' ) ) { return -1; } return \wc_get_page_id( 'shop' ); }