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.


Top ↑

Return Return

(bool)


Top ↑

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 );
	}


Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.