make random internal linking in the middle of posting
You can create a shortcode which can be used anywhere inside a post. The shortcode would be responsible for fetching a random post and displaying it. Example code: <?php /* * Plugin Name: Random Post * Description: Display random post * Version: 1.0 * Author: windyjonas * Author URI: https://www.jonasnordstrom.se */ function display_random_post() { ob_start(); … Read more