Title: Speed Bumps
Author: Daniel Bachhuber
Published: <strong>Июль 23, 2015</strong>
Last modified: Декабрь 17, 2016

---

Search plugins

This plugin **hasn’t been tested with the latest 3 major releases of WordPress**.
It may no longer be maintained or supported and may have compatibility issues when
used with more recent versions of WordPress.

![](https://s.w.org/plugins/geopattern-icon/speed-bumps.svg)

# Speed Bumps

 By [Daniel Bachhuber](https://profiles.wordpress.org/danielbachhuber/)

[Download](https://downloads.wordpress.org/plugin/speed-bumps.0.2.0.zip)

 * [Details](https://os.wordpress.org/plugins/speed-bumps/#description)
 * [Reviews](https://os.wordpress.org/plugins/speed-bumps/#reviews)
 *  [Installation](https://os.wordpress.org/plugins/speed-bumps/#installation)
 * [Development](https://os.wordpress.org/plugins/speed-bumps/#developers)

 [Support](https://wordpress.org/support/plugin/speed-bumps/)

## Description

Speed Bumps inserts speed bumps into site content based on business needs. This 
plugin requires code-level configuration.

Need a 300×250 unit inserted 3 paragraphs down on every story greater than 9 paragraphs
long? Speed Bumps makes seemingly complex business requests like this simple to 
implement within your WordPress environment.

Any number of speed bumps can be registered, from graphical elements to advertising
units to recirculation modules. Each speed bump inherits a default set of overridable
rules, and the speed bump can also dictate its own logic regarding acceptable placement.

To report bugs or feature requests, [please use Github issues](https://github.com/fusioneng/speed-bumps).

## Installation

It’s a plugin! Install it like any other.

Onec you’ve installed the plugin, you’ll have to register one or more speed bumps
in order for it to have any effect. You’ll also have to specifically call Speed 
Bumps to filter your content – the plugin doesn’t attach any filters to `the_content`
or other hooks by itself.

The simplest way to have Speed Bumps process all of your content and insert speed
bumps into content everywhere is simply adding the filter following registration:

    ```
    register_speed_bump( 'speed_bump_sample', array(
        'string_to_inject' => function() { return '<div id="speed-bump-sample"></div>'; },
    ));
    add_filter( 'the_content', 'insert_speed_bumps', 1 );
    ```

This registration results in the `string_to_inject` value being injected at the 
first opportunity based on the default rules (e.g. on posts longer than 1200 characters,
following the third paragraph OR following the paragraph which contains the 75th
word, whichever comes later).

Let’s say you wanted the speed bump higher in the content. You could modify the `
from_start` parameter to declare that the speed bump can be inserted after the first
paragraph (yes, like good engineers, we prefer zero-based indexing).

    ```
    register_speed_bump( 'speed_bump_sample', array(
        'string_to_inject' => function() { return '<div id="speed-bump-sample"></div>'; },
        'from_start' => 0,
    ));
    ```

You can also selectively insert speed bumps into a string of content by calling 
Speed Bumps directly:

    ```
    echo insert_speed_bumps( $content_to_be_inserted_into );
    ```

## FAQ

  What are the default rules?

The default options for speed bumps are currently:

 * Never insert in a post fewer than 8 paragraphs long, or fewer than 1200 characters.
 * Never insert before the the third paragraph, or before 75 words into the post.
 * Never insert fewer than 3 paragraphs or 75 words from the end of the article.
 * At least one paragraph from an iframe or embed.
 * At least two paragraphs from an image.
 * At least one paragraph from any other speed bump in the post.

  How to add more specific rules?

Adding a custom rule for a speed bump is a matter of defining a function and hooking
it to the `speed_bumps_{id}_constraints` filter. The function hooked to that filter
will receive several arguments to determine the state of the content, surrounding
paragraphs, and other context, and can return `false` to block insertion.

Simple, stupid example: You have a speed bump called rickroll” which inserts a beautiful
musical video throughout your content. You _really_ need this viral bump (publisher’s
words, not yours) so you disable minimum content length and the rules regarding 
acceptable speed bump distance from start/end of the post. Greedy!

    ```
    register_speed_bump( 'rickroll', array(
        'string_to_inject' => function() { return ''; },
        'minimum_content_length' => false,
        'from_start' => false,
        'from_end' => false,
    ));
    add_filter( 'the_content', 'insert_speed_bumps', 1 );
    ```

But, maybe that’s a little too extreme. You want to show it in certain situations,
say, only when the previous paragraph contains the phrase ‘give {something} up’.
Here’s how you would achieve that:

    ```
    add_filter( 'speed_bumps_rickroll_constraints', 'give_you_up', 10, 4 );

    function give_you_up( $can_insert, $context, $args, $already_inserted ) {
        if ( ! preg_match( '/give [^ ]+ up/i', $context['prev_paragraph'] ) ) {
            $can_insert = false;
        }
        return $can_insert;
    }
    ```

You could also disable it altogether with this filter (although why you would disable
so soon after addition, only Rick Astley himself could answer):

    ```
    add_filter( 'speed_bumps_rickroll_constraints', '__return_false' );
    ```

  How to remove default rules?

Each rule is hooked to that speed bump’s constraints” filter. To remove a rule, 
simply remove the filter which defines that rule, like these lines which remove 
the default rules for your speed bump:

    ```
    remove_filter( 'speed_bumps_{id}_constraints', '\Speed_Bumps\Constraints\Text\Minimum_Text::content_is_long_enough_to_insert' );
    remove_filter( 'speed_bumps_{id}_constraints', '\Speed_Bumps\Constraints\Text\Minimum_Text::meets_minimum_distance_from_start' );
    remove_filter( 'speed_bumps_{id}_constraints', '\Speed_Bumps\Constraints\Text\Minimum_Text::meets_minimum_distance_from_end' );
    remove_filter( 'speed_bumps_{id}_constraints', '\Speed_Bumps\Constraints\Content\Injection::less_than_maximum_number_of_inserts' );
    remove_filter( 'speed_bumps_{id}_constraints', '\Speed_Bumps\Constraints\Content\Injection::meets_minimum_distance_from_other_inserts' );
    remove_filter( 'speed_bumps_{id}_constraints', '\Speed_Bumps\Constraints\Elements\Element_Constraints::meets_minimum_distance_from_elements' );
    ```

## Reviews

There are no reviews for this plugin.

## Contributors & Developers

“Speed Bumps” is open source software. The following people have contributed to 
this plugin.

Contributors

 *   [ Daniel Bachhuber ](https://profiles.wordpress.org/danielbachhuber/)
 *   [ fusionengineering ](https://profiles.wordpress.org/fusionengineering/)
 *   [ goldenapples ](https://profiles.wordpress.org/goldenapples/)
 *   [ noppanit ](https://profiles.wordpress.org/noppanit/)

[Translate “Speed Bumps” into your language.](https://translate.wordpress.org/projects/wp-plugins/speed-bumps)

### Interested in development?

[Browse the code](https://plugins.trac.wordpress.org/browser/speed-bumps/), check
out the [SVN repository](https://plugins.svn.wordpress.org/speed-bumps/), or subscribe
to the [development log](https://plugins.trac.wordpress.org/log/speed-bumps/) by
[RSS](https://plugins.trac.wordpress.org/log/speed-bumps/?limit=100&mode=stop_on_copy&format=rss).

## Changelog

#### 0.2.0 (December 15, 2016)

 * Compatability: Remove direct $wp_filter access for WP 4.7 compatability.
 * Compatability: Fix issues throwing warnings in PHP7.
 * Feature: Add last ditch fallback” option for speed bump registration.
 * Feature: Add filter around speed bump insertion content.
 * Performance: Unregister speed bumps when global constraints prevent them being
   inserted.
 * Performance: Unregister speed bumps after inserting them the maximum number of
   times.
 * Performance: Allow speed bump constraint filters to short-circuit other filters
   at an insertion point, or to skip all remaining insertion points in a document.

#### 0.1.0 (July 23, 2015)

 * Initial release.
 * [Full release notes](http://fusion.net/story/170253/meet-speed-bumps-our-newest-open-source-release/)

## Meta

 *  Version **0.2.0**
 *  Last updated **9 years ago**
 *  Active installations **30+**
 *  WordPress version ** 4.2 or higher **
 *  Tested up to **4.7.33**
 *  Language
 * [English (US)](https://wordpress.org/plugins/speed-bumps/)
 * Tags
 * [advertising](https://os.wordpress.org/plugins/tags/advertising/)[content](https://os.wordpress.org/plugins/tags/content/)
 *  [Advanced View](https://os.wordpress.org/plugins/speed-bumps/advanced/)

## Ratings

No reviews have been submitted yet.

[Your review](https://wordpress.org/support/plugin/speed-bumps/reviews/#new-post)

[See all reviews](https://wordpress.org/support/plugin/speed-bumps/reviews/)

## Contributors

 *   [ Daniel Bachhuber ](https://profiles.wordpress.org/danielbachhuber/)
 *   [ fusionengineering ](https://profiles.wordpress.org/fusionengineering/)
 *   [ goldenapples ](https://profiles.wordpress.org/goldenapples/)
 *   [ noppanit ](https://profiles.wordpress.org/noppanit/)

## Support

Got something to say? Need help?

 [View support forum](https://wordpress.org/support/plugin/speed-bumps/)