-2

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/>';

1 Answers1

0

You can do it like this:

$html .= '<span class="dashicons dashicons-calendar"></span>'.'From'. $datetime->date_range( $date_format ) . '<br/>';
Crunch Much
  • 1,537
  • 1
  • 11
  • 14