Advertisement
entupueblo

Funcion año actual en WP

Mar 30th, 2023
654
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.25 KB | None | 0 0
  1. /**Función año actual**/
  2. function ano_shortcode() {
  3.     return date('Y');
  4. }
  5. add_shortcode('ano', 'ano_shortcode');
  6.  
  7. function ano_shortcode_in_title($title) {
  8.     return do_shortcode($title);
  9. }
  10. add_filter('the_title', 'ano_shortcode_in_title');
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement