View Single Post
Old 08-14-2007, 09:39 PM   #17 (permalink)
Dan.Linehan
Senior Member
 
Join Date: Oct 2006
Location: San Rafael, CA
Posts: 4,894
Dan.Linehan is on a distinguished road
Default

Right, the wordpress SMF forums.

Here is some code that should put SMF posts into your WP:

Code:
<?php echo SMF_EnSonBasliklar($limit=10,'<ul>','<li>','</li>','</ul>') ?>
Here is that same code integrated into sidebar.php:

Code:
<div id="sidebar">
<table width="100%">
<tr>
<td align="left" width="50%" valign="top" class="td_left">

<li class="widget_categories"><h2>Forum topics</h2>
<?php echo SMF_EnSonBasliklar($limit=10,' 
',' 
',' ','
') ?>
<?php if ( function_exists('dynamic_sidebar') && dynamic_sidebar(1) ){
?>
<?
} else{ ?>
<li class="widget_categories"><h2>Categories</h2>

<?php wp_list_cats('sort_column=name&optioncount=1'); ?>
__________________

Best,
Dan Linehan

For web development & design: Etopolos
| Facebook
Dan.Linehan is offline   Reply With Quote