WP_Theme::parent()

Returns reference to the parent theme.


Description Description


Return Return

(WP_Theme|false) Parent theme, or false if the current theme is not a child theme.


Top ↑

Source Source

File: wp-includes/class-wp-theme.php

	public function parent() {
		return isset( $this->parent ) ? $this->parent : false;
	}

Top ↑

Changelog Changelog

Changelog
Version Description
3.4.0 Introduced.


Top ↑

User Contributed Notes User Contributed Notes

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