Skip to content

Instantly share code, notes, and snippets.

@westonruter
Created September 15, 2023 00:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save westonruter/faccfac310645d0c922f1c56d9ec1fbf to your computer and use it in GitHub Desktop.
Save westonruter/faccfac310645d0c922f1c56d9ec1fbf to your computer and use it in GitHub Desktop.
<?php
/**
* Plugin Name: Insert Random Initial Image With the_content Filter
*/
add_filter(
'the_content',
static function ( string $content ): string {
$content = '<p><img src="https://source.unsplash.com/featured/1600x900" style="max-width:100%; height:auto" width="1600" height="900"></p>' . $content;
return $content;
}
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment