Title: Moonwolf's Replies | WordPress.org

---

# Moonwolf

  [  ](https://wordpress.org/support/users/moonwolf/)

 *   [Profile](https://wordpress.org/support/users/moonwolf/)
 *   [Topics Started](https://wordpress.org/support/users/moonwolf/topics/)
 *   [Replies Created](https://wordpress.org/support/users/moonwolf/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/moonwolf/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/moonwolf/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/moonwolf/engagements/)
 *   [Favorites](https://wordpress.org/support/users/moonwolf/favorites/)

 Search replies:

## Forum Replies Created

Viewing 6 replies - 1 through 6 (of 6 total)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Starbox - the Author Box for Humans] Starbox and page breaks](https://wordpress.org/support/topic/starbox-and-page-breaks/)
 *  [Moonwolf](https://wordpress.org/support/users/moonwolf/)
 * (@moonwolf)
 * [11 years, 11 months ago](https://wordpress.org/support/topic/starbox-and-page-breaks/#post-5214304)
 * You need to modify your functions.php (best done with a child theme NOT the theme’s
   core.
 * Assuming you’re a single author for the site, it’d be something like this in 
   the functions.php file:
 *     ```
       function add_starbox(){
       if (is_single()) {
       $content .= do_shortcode('[starbox]');
       return $content;
       }
   
       add_filter( "the_content", "add_starbox" );
       ```
   
 * You can use the same extra tags where it says [starbox] as you can with its shortcodes
   anywhere else.
 * See if that helps.
 *   Forum: [Reviews](https://wordpress.org/support/forum/reviews/)
    In reply to:
   [[Ultimate TinyMCE] COTS](https://wordpress.org/support/topic/cots/)
 *  Thread Starter [Moonwolf](https://wordpress.org/support/users/moonwolf/)
 * (@moonwolf)
 * [12 years, 4 months ago](https://wordpress.org/support/topic/cots/#post-7843051)
 * I didn’t know 3.9 was going to kill UT, thanks for the warning!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Twylah Widget] Username not found](https://wordpress.org/support/topic/username-not-found-1/)
 *  Thread Starter [Moonwolf](https://wordpress.org/support/users/moonwolf/)
 * (@moonwolf)
 * [13 years, 9 months ago](https://wordpress.org/support/topic/username-not-found-1/#post-3179733)
 * Hi Krystle
 * Login works fine now, and the widget is bringing up the thumbnails for topics
   as expected. Images and text match the ones on my twylah page.
 * Could I offer a suggestion? hover for “view all trending” shows “www.twylah.com/
   MoonWolf95” in the status bar as the destination URL. The link does go to the
   redirected URL (tweets.moonwolfs-lair.com) when clicked, but a way to have that
   link show the cname’d destination instead of the Twylah one might look better(
   not to mention any SEO effects the link might have).
 * The other suggestion is to have a tooltip for that “view all trending” link that’s
   derived from the widget’s settings – maybe another field so the user can (optionally)
   change the text of that link? ALso, tooltips for the thumbnail topics images?
 * Last suggestion – right now your widget isn’t accessibility friendly – no alt
   text for the thumbnails, no title tags for the links, no ARIA tagging to enable
   accessibility tech to best describe the widget’s real estate and content.
 * Please please please don’t be like everyone else and just ignore accessibility?
 * Nice work so far, both with the widget and Twylah itself for the most part.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [“Time Since” for comments and entries?](https://wordpress.org/support/topic/time-since-for-comments-and-entries/)
 *  [Moonwolf](https://wordpress.org/support/users/moonwolf/)
 * (@moonwolf)
 * [18 years, 4 months ago](https://wordpress.org/support/topic/time-since-for-comments-and-entries/#post-734394)
 * I forgot, that’s using Dunstan’s Time Since plugin – [http://binarybonsai.com/wordpress/time-since/](http://binarybonsai.com/wordpress/time-since/)
 * it works with 2.3 and 2.5
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [“Time Since” for comments and entries?](https://wordpress.org/support/topic/time-since-for-comments-and-entries/)
 *  [Moonwolf](https://wordpress.org/support/users/moonwolf/)
 * (@moonwolf)
 * [18 years, 4 months ago](https://wordpress.org/support/topic/time-since-for-comments-and-entries/#post-734393)
 * Try this:
 *     ```
       Posted <?php
       if(function_exists('time_since')) {
       	$entry_datetime = abs(strtotime($post->post_date));
       	echo time_since($entry_datetime, time());
       	echo ' ago ';
       } ?>
       ```
   
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [Dunstan’s Time Since](https://wordpress.org/support/topic/dunstans-time-since/)
 *  [Moonwolf](https://wordpress.org/support/users/moonwolf/)
 * (@moonwolf)
 * [18 years, 4 months ago](https://wordpress.org/support/topic/dunstans-time-since/#post-690167)
 * Try
 *     ```
       Posted <?php
       if(function_exists('time_since')) {
       	$entry_datetime = abs(strtotime($post->post_date));
       	echo time_since($entry_datetime, time());
       	echo ' ago ';
       } ?>
       ```
   

Viewing 6 replies - 1 through 6 (of 6 total)