Changing Date Format on Custom Meta Data w/shortcode call

Try with change line to date(‘d-m-Y’,strtotime($current_user->delivery_date)) ; function delivery_date( $atts ) { global $current_user, $user_login; get_currentuserinfo(); add_filter(‘widget_text’, ‘do_shortcode’); if ($user_login) return date(‘d-m-Y’,strtotime($current_user->delivery_date)) ; } add_shortcode( ‘delivery_date’, ‘delivery_date’ ); echo do_shortcode(‘[delivery_date]’);

get_the_term_list( get_the_ID() label formatting?

You can use HTML to mark it up however you’d like. You can use a <strong> tag to make it bold: $film_tags = get_the_term_list( get_the_ID(), ‘film_tags’, ‘<strong>Tags:</strong> ‘, ‘, ‘, ” ); Or add a class to style with CSS: $film_tags = get_the_term_list( get_the_ID(), ‘film_tags’, ‘<span class=”tags-label”>Tags:</span> ‘, ‘, ‘, ” );

Mystery line break

You could try this see if any different: <p> <?php $label = apply_filters(‘cm_tooltip_parse’, ‘Label: ‘, true); if ( generate_show_title() ) {$title = get_the_title();} else {$title=””;} echo str_replace( array( “\n”, “\r”), array( ”, ”), $label . $title ); ?> </p> If that works, cm_tooltip_parse or generate_show_title are probably outputting a line break somewhere, but at least … Read more

Measure time in ONLY HOUR format

Welcome to WPSE. You can try to filter it with: add_filter( ‘human_time_diff’, ‘wpse_hourly_human_time_diff’, 10, 4 ); where the filter’s callback is e.g. /** * Human time difference in hours only. * * @param string $since The difference in human readable text. * @param int $diff The difference in seconds. * @param int $from Unix timestamp … Read more