Guest User

Untitled

a guest
Jan 19th, 2018
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.84 KB | None | 0 0
  1. [shortcode]
  2. <img src="http://www.site.com/myimage.jpg" />
  3. <a href="http://www.blabla.com"><img src="http://www.site.com/myimage2.jpg" /></a>
  4. (...)
  5. [/shortcode]
  6.  
  7. <!--- shortcode code before input -->
  8. <img src="files/myimagescript?http://www.site.com/myimage.jpg" />
  9. <a href="http://www.blabla.com"><img src="files/myimagescript?http://www.site.com/myimage2.jpg" /></a>
  10. (...)
  11. <!-- shortcode code after input -->
  12.  
  13. function append_myimagescript($attr, $content){
  14. $pattern = '/src="([^"]*)"/i';
  15. $replacement = 'files/myimagescript?${1}';
  16. return preg_replace($pattern, $replacement, $content);
  17. }
  18.  
  19. function bartag_func( $atts ) {
  20. $atts = shortcode_atts( array(
  21. 'foo' => 'no foo',
  22. 'baz' => 'default baz'
  23. ), $atts, 'bartag' );
  24.  
  25. return "foo = {$atts['foo']}";
  26. }
  27. add_shortcode( 'bartag', 'bartag_func' );
Add Comment
Please, Sign In to add comment