Lego2012
12/13/2016 - 3:35 PM

Ads added above last paragraph

Ads added above last paragraph

<?php
//* Do NOT include the opening php tag shown above. Copy the code shown below.

function ads_added_above_last_p($text) {
    if( is_single() ) :
        $ads_text = '<div class="a" style="text-align: center;">[PUT SHORTCODE HERE]</div>';
    if($pos1 = strpos($text, '<p>', strpos($text, '<p>') + 3)){
            $text1 = substr($text, 0, $pos1);
            $text2 = substr($text, $pos1);
            $text = $text1 . $ads_text . $text2;
        }
    endif;
    return $text;
    }
add_filter('the_content', 'ads_added_above_last_p');```

<!-- Untested. -->

<!-- http://www.studiopress.com/forums/topic/social-media-share-buttons-help/ -->