Get page permalink without wpurl

There’s nothing built in to return the bit you want but it should be as easy as using the home_url() function and removing it’s output from the full url eg:

function get_relative_permalink( $url ) {
    return str_replace( home_url(), "", $url );
}

Leave a Comment