Raindrops 0.962 Bug report

Raindrops not support Settings/general/ Time Format

Time setting is not displayed where Publish date.

This bug will fixed next version Raindrops.

patch below.

Please open functions.php and paste at last line .

[php]
<?php
add_filter(‘raindrops_posted_on’, ‘bug_time_format_follow’);

function bug_time_format_follow($content){
$time = get_option( ‘time_format’ );
$time = get_the_date( $time );
return preg_replace(‘|(<span class="entry-date">)([^<]+)(</span>)|’, ‘$1$2 ‘.$time.’$3’,$content);
}
?>
[/php]


コメントは受け付けていません。