Advertisement
rusho81

Untitled

Mar 24th, 2017
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.53 KB | None | 0 0
  1. //Wordpress shortcode
  2. function rusho_alert_shortcode($atts, $content = null){
  3.     extract(shortcode_atts(array(
  4.       'city' => ''
  5.     ),$atts));
  6.     if($city == 'Dhaka'){
  7.         $message = ''.esc_html($city).' is the most populated city';
  8.     }elseif ($city == 'Sylhet'){
  9.         $message = ''.esc_html($city).' is the most beautiful city';
  10.     }elseif ($city == 'Barishal'){
  11.         $message = ''.esc_html($city).' is the city of river';
  12.     }else {
  13.         $message = 'You didn\'t mention the city';
  14.     }
  15.     return $message;
  16. }
  17. add_shortcode('alert','rusho_alert_shortcode');
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement