Advertisement
DeepCode00

Untitled

Sep 13th, 2019
188
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.36 KB | None | 0 0
  1. <?php
  2. /**
  3.  * Plugin Name: Wordpress plugin base
  4.  * Description: Sample code for worpdress plugin
  5.  */
  6. //Return string for shortcode
  7. function func_wp_vue(){
  8.     //Build String
  9.     $str= "<div>"
  10.     ."Hello, hello and hello."
  11.     ."</div>";
  12.     //Return to display
  13.     return $str;
  14. } // end function
  15. //Add shortcode to WordPress
  16. add_shortcode( 'wpvue', 'func_wp_vue' );
  17. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement