is_child_theme(): bool

Whether a child theme is in use.


Return

bool True if a child theme is in use, false otherwise.


Top ↑

Source

File: wp-includes/theme.php. View all references

function is_child_theme() {
	return ( TEMPLATEPATH !== STYLESHEETPATH );
}


Top ↑

Changelog

Changelog
Version Description
3.0.0 Introduced.

Top ↑

User Contributed Notes

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