d2321
2/12/2020 - 2:52 PM

Shortcodes with atts

<?php

//NEW
add_shortcode('custom_shopicon', 'custom_shopicon_shortcode');
function custom_shopicon_shortcode($atts = [], $content = null) {

  shortcode_atts(array(
      'title' => '',
      'subtitle' => '',
  ), $atts);

  if(empty($atts)) $atts = array();
  if(!isset($atts['title'])) $atts['title'] = 'Rozwiń';
  if(!isset($atts['subtitle'])) $atts['subtitle'] = 'Zwiń';
  
  ob_start(); ?>
  
  <?php $output = ob_get_contents(); ob_end_clean();
  return $output;
}