• Welcome to PHPVIBE Forums. Please log in.

[ Video Sharing CMS v4 ] Add Pages to the main sidebar

Started by liamgibbins,

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

liamgibbinsTopic starter

Can someone please list the code needed to add the pages to the main sidebar please....


  •  

PHPVibe A.

Hi! This

$pagesx = $db->get_results("select title,pid,pic from ".DB_PREFIX."pages WHERE menu = '1' ORDER BY title ASC ".this_limit()."");
 /* The pages lists */
 if($pagesx) {
echo '<h4 class="li-heading">'._lang('Information').'</h4>
<div class="sidebar-nav blc"> 
	<ul>';
	foreach ($pagesx as $px) {
    echo '<li><img src="'.thumb_fix($px->pic, true, 23, 23).'"><a href="'.page_url($px->pid, $px->title).'" title="'._html($px->title).'"> '._cut(_html($px->title),19).'</a></li>';
	}
   echo '</ul>   
    </div>';
}


File: tpl/main/sidebar.php

Remove

WHERE menu = '1'


if you want all pages.

liamgibbinsTopic starter

  •  

Similar topics (7)