Advertisement
Guest User

Untitled

a guest
Feb 23rd, 2017
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. // Create [year] shortcodes in text widgets
  2. function year_shortcode() {
  3. $year = date('Y');
  4. return $year;
  5. }
  6. add_shortcode('year', 'year_shortcode');
  7.  
  8. // Enable shortcodes in text widgets
  9. add_filter('widget_text', 'do_shortcode');
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement