Automattic\WooCommerce\Blocks\Templates

CartTemplate::get_placeholder_page()protectedWC 1.0

Returns the page object assigned to this template/page.

Method of the class: CartTemplate{}

No Hooks.

Return

\WP_Post|null. Post object or null.

Usage

// protected - for code of main (parent) or child class
$result = $this->get_placeholder_page();

CartTemplate::get_placeholder_page() code WC 9.4.2

protected function get_placeholder_page() {
	$page_id = wc_get_page_id( 'cart' );
	return $page_id ? get_post( $page_id ) : null;
}