کامپوزیت
// افزودن شورتکد برای نمایش تاریخچه قیمتها function supplier_price_history_shortcode() { if (current_user_can('supplier') || current_user_can('manage_options')) { global $wpdb; $current_user_id = get_current_user_id(); $table_name = $wpdb->prefix . 'supplier_prices'; // شروع خروجی $output = '
محصول | قیمت (تومان) | تاریخ ثبت | تاریخ انقضا | توضیحات |
---|---|---|---|---|
' . esc_html($product_name) . ' | '; $output .= '' . esc_html(number_format($price->price, 0)) . ' | '; $output .= '' . esc_html(date_i18n('Y/m/d', strtotime($price->price_date))) . ' | '; $output .= '' . ($price->expiration_date ? esc_html($price->expiration_date) : 'نامشخص') . ' | '; $output .= '' . esc_html($price->description) . ' | '; $output .= '
هنوز قیمتی ثبت نکردهاید. |
کامپوزیت