• I would like to be able to caps out the username of the user who commented on one of our articles in the recent comments section of our website. http://www.triplecz.com is the website. I am basically doing this because I am debating a couple of things, much too long to explain here but can anyone just confirm or deny if this is possible ?

    Or if there is another way to transform someone’s user name when they comment to show up as CAPS when they comment on one of our articles so it automatically shows up that way in the recent articles section. If anyone would be able to give me any type of input it would be greatly appreciated.

Viewing 4 replies - 1 through 4 (of 4 total)
  • Yup, look here

    Peter

    Thread Starter tokonik

    (@tokonik)

    Hey peter, thanks for the quick reply! I wanted to ask, this is the my footer code;

    <ul class=”footerbar-center-in”>
    <?php $sql = “SELECT * FROM $wpdb->comments LEFT OUTER JOIN $wpdb->posts ON ($wpdb->comments.comment_post_ID = $wpdb->posts.ID) WHERE comment_approved = ‘1’ AND comment_type = ” ORDER BY comment_date DESC LIMIT 0 , 4″; $comments = $wpdb->get_results($sql); foreach ($comments as $comment) { $data = $comment->comment_author . ” @ [” . $comment->post_title; echo ”

    In your style.css:

    #content .post .comments ol li cite {
    color:#FFFFFF;
    font-style:normal;
    font-weight:bold;
    text-transform: lowercase;
    }
    Thread Starter tokonik

    (@tokonik)

    thank you so much!

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Little fix’ is closed to new replies.