Alert: This function’s access is marked private. This means it is not intended for use by plugin or theme developers, only in other core functions. It is listed here for completeness.
WC_Query::page_on_front_is( int $page_id )
Is the front page a page we define?
Description Description
Parameters Parameters
- $page_id
-
(Required) Page ID.
Return Return
(bool)
Source Source
File: includes/class-wc-query.php
private function page_on_front_is( $page_id ) { return absint( get_option( 'page_on_front' ) ) === absint( $page_id ); }