Recent posts - How do I show the most recent posts on the main page of my website: Difference between revisions From Online Manual

Jump to: navigation, search
mNo edit summary
 
(10 intermediate revisions by 5 users not shown)
Line 1: Line 1:
SSI.php is included in SMF. To use it, you have to use these commands on the main page of your website:
SSI.php is included in SMF. To use it, you have to use the following code on the main page of your website:
{{code|1=<?php include('http://www.example.com/SSI.php?ssi_function=recentTopics'); ?>
{{code|1=<?php  
<?php include('http://www.example.com/SSI.php?ssi_function=topPoster');?>
require_once('/absolute/path/to/SSI.php');
<?php include('http://www.example.com/SSI.php?ssi_function=whosOnline');?>
ssi_recentTopics();
?>
}}
}}
Please see ssi_examples.php, located on your forum's root folder, for more examples.
Please see ssi_examples.php, located on your forum's root directory, for more examples.


For more information on SSI.php, take a look at [[Using SSI.php]].
For more information on SSI.php, take a look [[:Category:SSI|here]].
 
If you are not using a separate webpage for your homepage and people land on your forum index, you can show recent posts on the default forum index as well by going to ''Admin > current theme > Number of recent posts to display on board index''
[[Category: FAQ]]
[[Category: FAQ]]

Latest revision as of 14:02, 23 February 2016

SSI.php is included in SMF. To use it, you have to use the following code on the main page of your website:

<?php 
require_once('/absolute/path/to/SSI.php');
ssi_recentTopics();
?>

Please see ssi_examples.php, located on your forum's root directory, for more examples.

For more information on SSI.php, take a look here.

If you are not using a separate webpage for your homepage and people land on your forum index, you can show recent posts on the default forum index as well by going to Admin > current theme > Number of recent posts to display on board index



Advertisement: