Advertisement
Guest User

Untitled

a guest
Sep 26th, 2017
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 KB | None | 0 0
  1. function add_gallery_button($context){
  2. ?>
  3. <script>
  4. function insertSGGallery(){
  5. var win = window.dialogArguments || opener || parent || top;
  6. win.send_to_editor("[simon-gallery]");
  7. }
  8. </script>
  9. <?php
  10. $addgallerybutton = WP_PLUGIN_URL.'/'.str_replace(basename( __FILE__),"",plugin_basename(__FILE__))."elements/sg-button.png";
  11. $out = '<a onClick = "insertSGGallery()" title="Add Gallery"><img src="'.$addgallerybutton.'" alt="Add Gallery Button" /></a>';
  12. return $context . $out;
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement