Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Converting timestamp

Converting timestamp to human readable format

// Add Shortcode
function ConvertingTimestamp( $atts ) {

	// Attributes
	$atts = shortcode_atts(
		array(
			'resaltado' => 'false',
		),
		$atts
	);

	$timestamp = time();
	$hora = (date("F d, Y h:i:s", $timestamp));		
	//Converting timestamp to human readable format
	return "<mark><span> $timestamp ***  $hora; </span></mark>";

}
add_shortcode( 'mihora', 'ConvertingTimestamp' );