in this code, I need to add a simple text "from" after the calendar icon. How can i do?
Thank you
$html .= '<span class="dashicons dashicons-calendar"></span>' . $datetime->date_range( $date_format ) . '<br/>';
in this code, I need to add a simple text "from" after the calendar icon. How can i do?
Thank you
$html .= '<span class="dashicons dashicons-calendar"></span>' . $datetime->date_range( $date_format ) . '<br/>';
You can do it like this:
$html .= '<span class="dashicons dashicons-calendar"></span>'.'From'. $datetime->date_range( $date_format ) . '<br/>';
'` – Funk Forty Niner Aug 07 '15 at 12:32