Skip to content

Instantly share code, notes, and snippets.

@davisshaver
Created July 21, 2015 14:19
Show Gist options
  • Save davisshaver/f3e7757676a6c0cc0ed8 to your computer and use it in GitHub Desktop.
Save davisshaver/f3e7757676a6c0cc0ed8 to your computer and use it in GitHub Desktop.
Speed Bumps – Example code
<?php
register_speed_bump( 'rickroll', array(
'string_to_inject' => function() { return '<iframe width="420" height="315" src="https://www.youtube.com/embed/dQw4w9WgXcQ" frameborder="0" allowfullscreen></iframe>'; },
'minimum_content_length' => false,
'from_start' => false,
'from_end' => false,
));
add_filter( 'the_content', 'insert_speed_bumps', 1 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment