Timber\TermGetter::get_term_query_from_query_string PHP 메소드

get_term_query_from_query_string() 보호된 정적인 메소드

protected static get_term_query_from_query_string ( string $query_string ) : stdClass
$query_string string
리턴 stdClass
    protected static function get_term_query_from_query_string($query_string)
    {
        $args = array();
        parse_str($query_string, $args);
        $ret = self::get_term_query_from_assoc_array($args);
        return $ret;
    }