Hello from Japan! How to display day of the week …
-
I’m looking for advice on how to display day of the week at “reply-post-date”.
In topic pages, “at” is used in the display of posting date. like…
2014/05/28 at(←here!) 00:21
I want to replace the display from “at” to “(Sun)”.
In other words, I want to display a day of the week of posting time.I tried many times by using PHP function “preg_replace”.
However, it was too difficult for me. Code that I made is as bellow.function change_reply_post_date($output) { $output = preg_replace( '/at/' , "<?php echo get_post_time('D'); ?>" , $output ); return $output; } add_filter( 'bbp_get_reply_post_date' , 'change_reply_post_date');
In this case, it did not result in an error.
However, “at” disappeared.What should I do?
Would you please advice me?WordPress: ver3.9.1
bbPress: ver2.5.3
- You must be logged in to reply to this topic.