: You can create a dynamic output using PHP inside the 404.php template. Effectively you use the 404.php to include your header, footer and any navigation as per a normal template, and then
You can create a dynamic output using PHP inside the 404.php template.
Effectively you use the 404.php to include your header, footer and any navigation as per a normal template, and then swap out the normal loop and create a block of content that is randomised - e.g.:
<?
$num = Rand (1,4);
switch ($num) { // Here's 4 different examples
case 1:
echo "<div>content goes here</div>"; //normal HTML
break;
case 2:
echo $string_output_youve_set_earlier; //HTML in a string
break;
case 3:
include 'random_block_3.php'; //a PHP block
break;
case 4:
get_template_part('random','four'); //Using WordPress's own engine
}
?>
More posts by @Berumen354
Terms of Use Create Support ticket Your support tickets Stock Market News! © vmapp.org2024 All Rights reserved.