コード例 #1
0
ファイル: recipe-shortcode.php プロジェクト: robneu/simmer
			<?php 
}
?>

			<?php 
if ($cook_time = simmer_get_the_cook_time()) {
    ?>

				<li>
					<strong><?php 
    _e('Cook Time', 'simmer');
    ?>
:</strong>
					<meta itemprop="cookTime" content="<?php 
    echo esc_attr(simmer_get_the_cook_time(get_the_ID(), 'machine'));
    ?>
"><?php 
    echo esc_html($cook_time);
    ?>
				</li>

			<?php 
}
?>

			<?php 
if ($total_time = simmer_get_the_total_time()) {
    ?>

				<li>
コード例 #2
0
ファイル: template-functions.php プロジェクト: robneu/simmer
/**
 * Print the total cook of the current recipe in human-readable format.
 *
 * @since 1.0.0
 *
 * @return void
 */
function simmer_the_cook_time()
{
    echo esc_html(simmer_get_the_cook_time());
}