This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| // This particular example adds Hustle Social Sharing shortcode after content without editing template files on single posts/pages only. | |
| function jmorris_before_after($content) { | |
| $beforecontent = ''; | |
| if ( is_single() ) { | |
| $aftercontent = '[wd_hustle_ss id="jmorris-online"]'; | |
| } else { | |
| $aftercontent = ''; | |
| } | |
| $fullcontent = $beforecontent . $content . $aftercontent; |