Vous cherchez un moyen de rediriger automatiquement votre page d’accueil vers un article aléatoire ? Bien qu’il existe probablement un plugin pour cela, nous avons créé un extrait de code rapide que vous pouvez utiliser pour ajouter un pied de page de flux personnalisé dans WordPress.
Instructions:
Tout ce que vous avez à faire est d’ajouter ce code au fichier index.php de votre thème :
<?php if (have_posts() && is_home()) { query_posts('orderby=rand'); while (have_posts()) { the_post(); wp_redirect(get_permalink()); } } ?>
Note : Si c’est la première fois que vous ajoutez des extraits de code dans WordPress, veuillez vous référer à notre guide sur la façon d’ajouter correctement des extraits de code dans WordPress, afin de ne pas briser accidentellement votre site.
Si vous avez aimé cet extrait de code, n’hésitez pas à consulter nos autres articles sur le site comme : 62 meilleurs thèmes de blog WordPress gratuits et comment configurer le suivi des auteurs dans WordPress avec Google Analytics.
Thank you so much for your information Kevin, this post is really helpful.
[…] “Redirect Home Page to a Random Blog Post,” WordPress Code Snippets […]
I have been Googling all morning on how to make my blog display random posts on homepage and this truly done it! Thank you Kevin. You just saved me.
Sweet code. I used this on my multisite install in a different way. I created a page template with this in it, then created a page with that template as the page template. I then added a “Random Post” button to the theme that all my multisites use that links to that page. So the result is a button that users can continually click to get to a random post on a random blog on the network. fyi this requires that you use the sitewide tags plugin to repost any posts from sub blogs onto the main blog. It sounds complicated maybe but it works great!
Sweet sounds cool Paul, you could do something similar with this if you created a new template and page called random or something with the above. Hey you should submit a snippet or two we just recently add a contribute option – http://wpsnipp.com/index.php/contribute/
[…] code snippets and shortcodes almost everyday of the week!Here are some of our favorite ones: Redirect a home page to a random post, show taxonomies as a list on a post or page, and disabling widgets on certain pages! Share and […]