is posible in wordpress post to replace a single word -
i have on idea dont know if posible eg. i'm writing post in wordpress site , have write word many times, possible write once @ start , in other part written automatically shortcut or need plugin. if change word @ start other similar words changed automatically, in word document action find , replace.
yes, can use shortcode that. , can write your own mini-plugin it.
the plugin simply:
<?php /** * plugin name: single word shortcode */ add_shortcode( 'so', 'shortcode_so_22482571' ); function shortcode_so_22482571( $atts ) { return "<a href='http://stackoverflow.com'>stack overflow</a>"; } after activation, [so] occurrences in posts , pages converted stack overflow link.
Comments
Post a Comment