Exemplo n.º 1
0
function hocwp_get_current_url()
{
    global $wp;
    $request = $wp->request;
    if (empty($request)) {
        $uri = basename($_SERVER['REQUEST_URI']);
        $first_char = hocwp_get_first_char($uri);
        if ('?' === $first_char) {
            $uri = hocwp_remove_first_char($uri, '?');
        } else {
            $parts = explode('?', $uri);
            if (count($parts) == 2) {
                $uri = $parts[1];
            }
        }
        $request = '?' . $uri;
        $current_url = trailingslashit(home_url()) . $request;
    } else {
        $current_url = trailingslashit(home_url($request));
    }
    $current_url = apply_filters('hocwp_current_url', $current_url);
    return $current_url;
}
Exemplo n.º 2
0
function hocwp_remove_first_char_and_last_char($string, $char = '')
{
    if (empty($char)) {
        $string = hocwp_remove_first_char($string);
        $string = hocwp_remove_last_char($string);
    } else {
        $string = trim($string, $char);
    }
    return $string;
}