PUM_Helpers::popup_theme_selectlist()


Description Description


Source Source

File: classes/Helpers.php

	public static function popup_theme_selectlist() {

		$themes = array();

		foreach ( pum_get_all_themes() as $theme ) {
			$themes[ $theme->ID ] = $theme->post_title;
		}

		return $themes;

	}


Top ↑

User Contributed Notes User Contributed Notes

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