Forum Replies Created

Viewing 1 replies (of 1 total)
  • Thread Starter Easy RTL CO

    (@easyrtlco)

    توی فایل functions.php قالبم یک شورت کد درست کردم

    function zef_date_today($atts, $content = null) {
        extract( shortcode_atts( array(
                'format' => ''
            ), $atts ) ); 
         
        if ($atts['format'] == '') {
        $date_time .= date(get_option('date_format')); 
        }  else { 
        $date_time .= date($atts['format']); 
        } 
        return $date_time;
        } 
        add_shortcode('date-today','zef_date_today'); 

    بعد جایی که می خواستم به این شکل لودش کردم

    <?php echo do_shortcode ('[date-today format="j F Y"]') ?>

    در کنار تاریخ شمسی تاریخ روز میلادی رو هم نمایش میدم

Viewing 1 replies (of 1 total)