Create a Page Template Which Displays All Posts by Current User

Working code:

    <?php if (is_user_logged_in() ) : ?>

        <?php
        //if a certain page, then display posts authored by the logged in user
        $page_title="Support History";
        if ( is_user_logged_in()  && is_page($page_title) ) {
        global $current_user;
        get_currentuserinfo();
        $args=array(
            'author' => $current_user->ID,
            'post_type' => 'post',
            'post_status' => 'publish, private',
            'posts_per_page' => -1,
            'caller_get_posts'=> 1
        );
        $my_query = null;
        $my_query = new WP_Query($args);
        if( $my_query->have_posts() ) {
        echo 'Your Support History';
        while ($my_query->have_posts()) : $my_query->the_post(); ?>
        <p><a href="https://wordpress.stackexchange.com/questions/122823/<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></p>
        <?php
        endwhile;
        }
        wp_reset_query();  // Restore global post data stomped by the_post().
        }
        ?>

    <?php endif; ?>