dekadent30
Elite Member
- Nov 10, 2008
- 1,910
- 1,036
I need to display random link from list (in txt file) on my wp blog's sidebar on every page refresh . How to do that in PHP? Or maybe you know any plugin? List of urls will be big - 5k-10k urls
<?php $f_contents = file("list.txt"); $line = $f_contents[array_rand ($f_contents)]; echo $line; ?>
In wp-content/uploadsI tried this code but it displays my blog url instead of random link. Where i should upload list.txt file? To the same folder where sidebar.php (of specific theme) is placed? Or to the main wordpress folder with index file?