How to Display Recent Thread and Most Reply?

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • jauhari
    Member
    • Apr 2006
    • 35
    • 3.6.x

    How to Display Recent Thread and Most Reply?

    Can anybody help me, how to display Recent Thread and Most Reply thread with custom query?

    I will place this query on the header on my vBulletin forum.

    Please Help me
    Free WordPress Themes
    Please Join #1 Indonesia WordPress Community
  • Jake Bunce
    Senior Member
    • Dec 2000
    • 46598
    • 3.6.x

    #2
    Most recent thread:

    SELECT * FROM thread
    ORDER BY dateline
    DESC
    LIMIT 0, 1

    Most replies:

    SELECT * FROM thread
    ORDER BY replycount
    DESC
    LIMIT 0, 1

    Comment

    • jauhari
      Member
      • Apr 2006
      • 35
      • 3.6.x

      #3
      Originally posted by Jake Bunce
      Most recent thread:

      SELECT * FROM thread
      ORDER BY dateline
      DESC
      LIMIT 0, 1

      Most replies:

      SELECT * FROM thread
      ORDER BY replycount
      DESC
      LIMIT 0, 1
      This code only SQL query right? How to integrated into vBulletin, that I mean real example

      Regards

      Jauhari
      Free WordPress Themes
      Please Join #1 Indonesia WordPress Community

      Comment

      • Jake Bunce
        Senior Member
        • Dec 2000
        • 46598
        • 3.6.x

        #4
        If you have some coding ability then you can post on www.vbulletin.org for help with this.

        Comment

        widgetinstance 262 (Related Topics) skipped due to lack of content & hide_module_if_empty option.
        Working...