Go Back   vb.org Archive > vBulletin 3 Discussion > vB3 Programming Discussions
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools Display Modes
  #1  
Old 06-26-2012, 11:53 PM
MattRiddle MattRiddle is offline
 
Join Date: Oct 2007
Posts: 2
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default limit recent blog post 1 per user

The forum I work for has a module on the Front Page where it displays 5 of the most recent blog posts.

Recently, a blog poster posted 4 blog posts back-to-back, taking up the majority of the space.

I was hoping to figure out a way to display only the most recent Blog post per user. This would give the most users access to showcasing their blog posts.

I was thinking perhaps the query could be modified in the ORDER BY or LIMIT area, but I wasn't sure where. I really haven't used this type of code that much.

Any help would be very appreciated.

Thanks!

PHP Code:
<?xml version="1.0" encoding="ISO-8859-1" ?>
<moduleinfo>
    <module>
        <title>Latest Blogs</title>
        <identifier>vbblog</identifier>
        <filename>vb_blogs.php</filename>
        <inctype>php_file</inctype>
        <templatelist>adv_portal_vb_blogs</templatelist>
        <parent>0</parent>
        <colspan>0</colspan>
        <formcode />
        <useshell>1</useshell>
        <link><![CDATA[{$vbulletin->options[bburl]}/blogs/{$vbulletin->session->vars[sessionurl_q]}]]></link>
        <options>0</options>
    </module>
    <templates>
        <adv_portal_vb_blogs><![CDATA[<tr>
    <td class="alt1"><span class="smallfont">
        $spitblogs<br /></span>
    </td>
</tr>]]></adv_portal_vb_blogs>
    </templates>
    <file><![CDATA[<?php
//Latest Blogs
$latestblogs $db->query(
    SELECT blogid, blog.title, blog_user.title AS blogname, comments_visible, username, dateline, userid, views, blog.state
    FROM " 
TABLE_PREFIX "blog AS blog
    LEFT JOIN " 
TABLE_PREFIX "blog_user AS blog_user ON blog_user.bloguserid=blog.userid 
    WHERE blog.state='visible'
    ORDER BY dateline DESC 
    LIMIT 5
"
);

$blog_count 0;
while (
$showblogs=$db->fetch_array($latestblogs)) 

    
$blog_count++;
    
$blog_userid $showblogs['userid'];
    
$blogid $showblogs['blogid'];
    
$blog_title $showblogs['title'];
    
$blog_views $showblogs['views'];
    
$blog_username $showblogs['username'];
    
$blog_dateline vbdate($vbulletin->options['dateformat'], $showblogs['dateline']);
    
$blog_state $showblogs['state'];
   
    
$spitblogs_title .= "<a href=\"{$vbulletin->options[bburl]}/blog.php?b=$blogid\">$blog_title</a>";
    
$spitblogs_title .= "<br /> ";
    
$spitblogs_views .= $blog_views;
    
$spitblogs_views .= "<br /> ";
    
$spitblogs_username .= "<a href=\"{$vbulletin->options[bburl]}/blog.php?u=$blog_userid\">$blog_username</a>";
    
$spitblogs_username .= "<br /> ";
    
$spitblogs_date .= $blog_dateline;
    
$spitblogs_date .= "<br /> ";

    if (
$blog_count 5
    { 
        
$blog_sep "<br /><br /> ";
    }
    else
    {
        
// vBadvanced Dynamics needs this 
        
$blog_sep "";
    }
    
    
$spitblogs .= "<img src=\"{$stylevar[imgdir_misc]}/blog/blog_icon.gif\"> <a href=\"{$vbulletin->options[bburl]}/blog.php?b=$blogid\"><strong>$blog_title</strong></a><br />$blog_dateline by <a href=\"{$vbulletin->options[bburl]}/member.php?u=$blog_userid\">$blog_username</a><!--<br />Blog State: $blog_state--><br /><em>Viewed $blog_views times$blog_sep</em>";
}
//Latest Blogs
eval('$home["$mods[modid]"][\'content\'] = "' fetch_template('adv_portal_vb_blogs') . '";');
?>]]></file>
</moduleinfo>
--------------- Added [DATE]1340843166[/DATE] at [TIME]1340843166[/TIME] ---------------

I think the trick is I need to embed a 2nd query inside of the current query. So it pulls the most recent entry per user, and then displays them by post date.

Any help on doing that?
Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT. The time now is 02:13 AM.


Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.03205 seconds
  • Memory Usage 2,184KB
  • Queries Executed 13 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)ad_showthread_beforeqr
  • (1)ad_showthread_firstpost
  • (1)ad_showthread_firstpost_sig
  • (1)ad_showthread_firstpost_start
  • (1)bbcode_php
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)navbar
  • (3)navbar_link
  • (120)option
  • (1)post_thanks_box
  • (1)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (1)post_thanks_postbit_info
  • (1)postbit
  • (1)postbit_onlinestatus
  • (1)postbit_wrapper
  • (1)spacer_close
  • (1)spacer_open
  • (1)tagbit_wrapper 

Phrase Groups Available:
  • global
  • inlinemod
  • postbit
  • posting
  • reputationlevel
  • showthread
Included Files:
  • ./showthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/functions_bigthree.php
  • ./includes/class_postbit.php
  • ./includes/class_bbcode.php
  • ./includes/functions_reputation.php
  • ./includes/functions_post_thanks.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • showthread_start
  • showthread_getinfo
  • forumjump
  • showthread_post_start
  • showthread_query_postids
  • showthread_query
  • bbcode_fetch_tags
  • bbcode_create
  • showthread_postbit_create
  • postbit_factory
  • postbit_display_start
  • post_thanks_function_post_thanks_off_start
  • post_thanks_function_post_thanks_off_end
  • post_thanks_function_fetch_thanks_start
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • fetch_musername
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete