Title: mouseclone's Replies | WordPress.org

---

# mouseclone

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

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

 Search replies:

## Forum Replies Created

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

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [link rewrite](https://wordpress.org/support/topic/link-rewrite/)
 *  Thread Starter [mouseclone](https://wordpress.org/support/users/mouseclone/)
 * (@mouseclone)
 * [17 years ago](https://wordpress.org/support/topic/link-rewrite/#post-1030999)
 * Anyone with any ideas?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [ASMW WP Plugin](https://wordpress.org/support/topic/asmw-wp-plugin/)
 *  Thread Starter [mouseclone](https://wordpress.org/support/users/mouseclone/)
 * (@mouseclone)
 * [17 years ago](https://wordpress.org/support/topic/asmw-wp-plugin/#post-1029588)
 * never mind.. some reading and a good bit of looking around has solved my problems.
   Thx.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [ASMW WP Plugin](https://wordpress.org/support/topic/asmw-wp-plugin/)
 *  Thread Starter [mouseclone](https://wordpress.org/support/users/mouseclone/)
 * (@mouseclone)
 * [17 years ago](https://wordpress.org/support/topic/asmw-wp-plugin/#post-1029575)
 * Is there anyone out there that would be able to help me with this. I don’t seem
   to be able to find out where my repository is. I don’t know why directions are
   not listed on the site for people that a dumb like me.
 * Just need a little help here WP.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Trackbacks / Pingbacks – WP 2.5](https://wordpress.org/support/topic/trackbacks-pingbacks-wp-25/)
 *  Thread Starter [mouseclone](https://wordpress.org/support/users/mouseclone/)
 * (@mouseclone)
 * [17 years, 11 months ago](https://wordpress.org/support/topic/trackbacks-pingbacks-wp-25/#post-742054)
 * Ok I will give it some time. I have had a few people not have it happen for a
   few hours.
 * Is there something that I can run in crontab that will cause it to check every
   hour or so?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [Replacing a Post based on regex](https://wordpress.org/support/topic/replacing-a-post-based-on-regex/)
 *  Thread Starter [mouseclone](https://wordpress.org/support/users/mouseclone/)
 * (@mouseclone)
 * [18 years, 4 months ago](https://wordpress.org/support/topic/replacing-a-post-based-on-regex/#post-659958)
 * Ok I’m still not getting it.
 * Currently I can replace `[test]` in a post with this function:
 * >     ```
   >     function asmw($text) {
   >             $asmw_tag_pat = '/(\[test\])/';
   >             $test = 'This is the text to replace';
   > 
   >             if (preg_match($asmw_tag_pat, $text, $matches)) {
   >                     $text = preg_replace($asmw_tag_pat, $test, $text);
   >             }
   > 
   >     return $text;
   >     }
   > 
   >     add_filter('content_save_pre', 'asmw');
   >     ```
   > 
 * This is currently the way that the plugin works now and it works well. The problem
   is that it will only replace `[test]`.
 * is there an easy way to wrap a post in a table or div tags before it goes into
   the database?
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [How do I list RSS links beside my displayed categories](https://wordpress.org/support/topic/how-do-i-list-rss-links-beside-my-displayed-categories/)
 *  [mouseclone](https://wordpress.org/support/users/mouseclone/)
 * (@mouseclone)
 * [19 years, 11 months ago](https://wordpress.org/support/topic/how-do-i-list-rss-links-beside-my-displayed-categories/#post-373117)
 * so where would you use the wp_list_cats?? in the sidebar php from the themes 
   directory? never mind just read some more… guess it helps to read.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [How do I list RSS links beside my displayed categories](https://wordpress.org/support/topic/how-do-i-list-rss-links-beside-my-displayed-categories/)
 *  [mouseclone](https://wordpress.org/support/users/mouseclone/)
 * (@mouseclone)
 * [19 years, 11 months ago](https://wordpress.org/support/topic/how-do-i-list-rss-links-beside-my-displayed-categories/#post-373115)
 * Well I did it with out the wp_list_cats. I still don’t get the way that works
   yet and I may go back and do it that way but…
 * `$link = '<ahref="'.get_category_link($category->cat_ID).'" ';
    $rss = '<a href
   ="'.get_category_link($category->cat_ID).'&feed=rss2" '; if ( $use_desc_for_title
   == 0 || empty($category->category_description) ) $link .= 'title="'. sprintf(
   __("View all posts filed under %s"), wp_specialchars($category->cat_name)) . '"';
   else $link .= 'title="' . wp_specialchars(apply_filters('category_description',
   $category->category_description,$category)) . '"'; $link .= '>'; $link .= apply_filters('
   list_cats', $category->cat_name, $category).'</a> '; $rss .= 'title="' . wp_specialchars(
   apply_filters('category_description',$category->category_description,$category)).'"';
   $rss .= '>'; $rss .= '<img src="http://mouseclone.com/blog/rss-icon/rss-12x12.
   gif"></a>'; $link .= $rss;
 * I used $rss to create mine and just copies a few bits of code and then joined
   the $rss to the end of $link with $link .= $rss
 * Hope this helps some. maybe i will do it right next time. or maybe not right 
   just what is given to me.
 * and edit the wp-includes/template-functions-category.php file.
 * visit website for a look see.

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