/**
  * Get a Content Template by it's name.
  *
  * See get_template_id_by_name() for details.
  *
  * @param string $post_name Content Template name.
  * @return null|WPV_Content_Template_Embedded Content Template or null if it wasn't found or couldn't be loaded.
  *
  * @since 1.9
  */
 static function get_template_by_name( $post_name ) {
     return WPV_Content_Template_Embedded::get_instance( WPV_Content_Template_Embedded::get_template_id_by_name( $post_name ) );
 }
	/**
	 * get the template id from the name and include caching.
	 *
     * @deprecated Consider using WPV_Content_Template_Embedded::get_template_id_by_name directly.
	 */
	function get_template_id( $template_name ) {
        return WPV_Content_Template_Embedded::get_template_id_by_name( $template_name );
	}