• Skip to main content
  • Skip to forum navigation

StudioPress

  • Shop for Themes
  • My StudioPress

Forum navigation

  • Home
  • General Genesis Discussions
  • StudioPress Themes
  • Genesis Blocks
    • Genesis Blocks
    • Genesis Custom Blocks
  • Retired Themes
  • FAQs
  • Forum Rules
  • Internationalization and Translations
  • Forum Bugs and Suggestions
  • Forum Log In

Are You Using The WordPress Block Editor?

Genesis now offers plugins that help you build better sites faster with the WordPress block editor (Gutenberg). Try the feature-rich free versions of each plugin for yourself!

Genesis Blocks Genesis Custom Blocks

Creating a Custom Page for User's Comments

Welcome!

These forums are for general discussion on WordPress and Genesis. Official support for StudioPress themes is offered exclusively at My StudioPress. Responses in this forum are not guaranteed. Please note that this forum will require a new username, separate from the one used for My.StudioPress.

Log In
Register Lost Password

Community Forums › Forums › Archived Forums › Design Tips and Tricks › Creating a Custom Page for User's Comments

This topic is: not resolved

Tagged: comments, custom template

  • This topic has 1 reply, 2 voices, and was last updated 11 years ago by Brad Dalton.
Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • July 12, 2015 at 5:26 pm #159209
    KASelway
    Member

    Hi everyone,

    I'm having an issue getting my content to show up in the right place in a custom template. The code below is intended to display a user's content history, provided they're logged in to wordpress. I've tried playing around with the PHP, but no matter what I do the customized part will either show up above or below the full page Genesis template.

    Any ideas on what I'm doing wrong?

    Thanks!!
    Kim

    <?php
    /*
    Template Name: User's Recent Comment
    */
    
    if( is_user_logged_in() ) :
    	global $current_user;
    	get_currentuserinfo();
    
    	$querystr = "
    		SELECT comment_ID, comment_post_ID, post_title, comment_content
    		FROM $wpdb->comments, $wpdb->posts
    		WHERE user_id = $current_user->ID
    		AND comment_post_id = ID
    		AND comment_approved = 1
    		ORDER BY comment_ID DESC
    	 ";
    	$comments_array = $wpdb->get_results($querystr, OBJECT);
    
    	if( $comments_array ): ?>
    <div class="entry-content">
    <h2>Your Recent Posts</h2>
    <ul>
    <?php
    		foreach ( $comments_array as $comment ):
    			setup_postdata( $comment );
    			echo "<li><a href='". get_bloginfo( 'url' ) ."/?p=".$comment->comment_post_ID."'>Comment on ". $comment->post_title. "</a><br />". $comment->comment_content . "</li>";
    		endforeach; ?>
    </ul>
    </div>
    <?php
    	endif;
    endif;
    genesis();?>
    July 12, 2015 at 6:55 pm #159222
    Brad Dalton
    Participant

    Use:

    remove_action( 'genesis_loop', 'genesis_do_loop' );
    add_action( 'genesis_loop', 'your_function' );
    function your_function() {
    

    Tutorials for StudioPress Themes.

  • Author
    Posts
Viewing 2 posts - 1 through 2 (of 2 total)
  • The forum ‘Design Tips and Tricks’ is closed to new topics and replies.

CTA

Ready to get started? Create a site or shop for themes.

Create a site with WP EngineShop for Themes

Footer

StudioPress

© 2026 WPEngine, Inc.

Products
  • Create a Site with WP Engine
  • Shop for Themes
  • Theme Features
  • Get Started
  • Showcase
Company
  • Brand Assets
  • Terms of Service
  • Accptable Usse Policy
  • Privacy Policy
  • Refund Policy
  • Contact Us
Community
  • Find Developers
  • Forums
  • Facebook Group
  • #GenesisWP
  • Showcase
Resources
  • StudioPress Blog
  • Help & Documentation
  • FAQs
  • Code Snippets
  • Affiliates
Connect
  • StudioPress Live
  • StudioPress FM
  • Facebook
  • Twitter
  • Dribbble