View Single Post
  #1   IP: 222.184.47.203
Old 2009-07-29, 07:00 AM
topvip topvip is offline
超级版主
 
Join Date: 2006-01-04
Posts: 1206
topvip 正向着好的方向发展
Default HowTo Display Latest Active Threads on ANY normal HTML page

############# Install Instructions
## THIS WILL DISPLAY THE LATEST 10 ACTIVE THREADS ON ANY NON VBULLETIN HTML PAGE

## Requires vBulletin version 3.5.0 stable.

## Admin Control Panel > vBulletin Options > vBulletin Options > Admin Control Panel Options > Use External Data Provider:
YES - type = JavaScript

## At any location in your custom .html page, add this code:

Code:
<table cellpadding="6" cellspacing="1" border="0" width="100%" align="center">
<tbody>
<tr>
<td colspan="2">
<a href="search.php?do=getnew">Latest Active Threads</a>
</td>
</tr>
</tbody>
<tbody>
<tr>
 
<td width="100%">
 
<div>
<script type="text/javascript" src="external.php?type=js"></script> 
<script language="" type="text/javascript">
<!--
for (var x in threads)
{
document.writeln("<a href=\"showthread.php?t="+threads[x].threadid+"\">"+threads[x].title+"</a> (Posted By: "+threads[x].poster+")<br />");
}
//-->
</script></div>
 
</td>
</tr>
</tbody>
<!-- show latest active threads -->
</table>
<br />
## Save the html file, upload it, and you're done.

Note: Don't forget to turn on the External Feed options here:

Admin CP -> vBulletin Options -> External Data Provider
Reply With Quote