Wordpress - Get page content using slug

Use get_posts() and the parameter name which is the slug:

$page = get_posts( array( 'name' => 'your-slug' ) );

if ( $page )
{
    echo $page[0]->post_content;
}

Be aware that the post type in get_posts() defaults to 'post'. If you want a page use …

$page = get_posts(
    array(
        'name'      => 'your-slug',
        'post_type' => 'page'
    )
);

If you want all public post types (except attachments) set the post type argument to 'any'. Then you could get more than one result because slugs are not unique across different post types.


If on the page with the slug in question

Read up on conditional tags:
is_page() also takes the slug as an argument.

Hence,

if( is_page( 'your-slug' ) ) {
     // fetch content
}

will do what you want.

If on another page

Should you be interested on how to fetch post/page content based on a slug when not on said page, you can feed get_posts a slug as well. This is not documented in the codex.

The following will fetch the id from a slug:

$args = array(
    'name' => 'your-slug'
);
$posts_from_slug = get_posts( $args );

// echo fetched content
echo $posts_from_slug[0]->post_content;

You can get a page by its title using get_page_by_title() function.

You can use it like this (assuming you want to show the content):

$page = get_page_by_title('Your Title'); 
$content = apply_filters('the_content', $page->post_content);
echo $content;

BTW, to Get page using slug:

function get_page_id_by_slug($slug){
    global $wpdb;
    $id = $wpdb->get_var("SELECT ID FROM $wpdb->posts WHERE post_name = '".$slug."'AND post_type = 'page'");
    return $id;
}

$page = get_post(get_page_id_by_slug('my-slug'));