Title: msoftware's Replies | WordPress.org

---

# msoftware

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

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

 Search replies:

## Forum Replies Created

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

 *   Forum: [Hacks](https://wordpress.org/support/forum/plugins-and-hacks/hacks/)
   
   In reply to: [Imported csv file won't update posts using wp_insert_post()](https://wordpress.org/support/topic/imported-csv-file-wont-update-posts-using-wp_insert_post/)
 *  [msoftware](https://wordpress.org/support/users/msoftware/)
 * (@msoftware)
 * [11 years, 6 months ago](https://wordpress.org/support/topic/imported-csv-file-wont-update-posts-using-wp_insert_post/#post-5490999)
 * Hi,
 * you can use the seconp parameter of the wp_insert_post function to see the error.
 * $wp_error (bool) (optional) Allow return of WP_Error object on failure
    Default:
   false
 * You can find a working example of wp_insert_post error handling at [http://vanillaco.de/file.php?name=%2Floudervoice%2Ftrunk%2Finc%2Fldv-ajax-functions.php#35-42](http://vanillaco.de/file.php?name=%2Floudervoice%2Ftrunk%2Finc%2Fldv-ajax-functions.php#35-42)
 *   Forum: [Hacks](https://wordpress.org/support/forum/plugins-and-hacks/hacks/)
   
   In reply to: [Trying to remove with and height attributes off get_avatar](https://wordpress.org/support/topic/trying-to-remove-with-and-height-attributes-off-get_avatar/)
 *  [msoftware](https://wordpress.org/support/users/msoftware/)
 * (@msoftware)
 * [11 years, 6 months ago](https://wordpress.org/support/topic/trying-to-remove-with-and-height-attributes-off-get_avatar/#post-5491778)
 * Check, if this is working:
 *  $avatar = preg_replace(‘/(width|height)=\”\d*\”\s/’, “”, $avatar);
    $avatar 
   = preg_replace(“/(width|height)=\’\d*\’\s/”, “”, $avatar);
 * Found at:
    [http://vanillaco.de/file.php?name=%2Fwp-user-avatar%2Ftags%2F1.8%2Fincludes%2Fwpua-functions.php#194-201](http://vanillaco.de/file.php?name=%2Fwp-user-avatar%2Ftags%2F1.8%2Fincludes%2Fwpua-functions.php#194-201)
 *   Forum: [Hacks](https://wordpress.org/support/forum/plugins-and-hacks/hacks/)
   
   In reply to: [Feeds, Custom Post and URL Mapping](https://wordpress.org/support/topic/feeds-custom-post-and-url-mapping/)
 *  [msoftware](https://wordpress.org/support/users/msoftware/)
 * (@msoftware)
 * [11 years, 8 months ago](https://wordpress.org/support/topic/feeds-custom-post-and-url-mapping/#post-5342992)
 * You can do it like the rss-in-page plugin.
 * View plugin source at [http://vanillaco.de/file.php?name=%2Frss-in-page%2Ftrunk%2FRSSinpage.php](http://vanillaco.de/file.php?name=%2Frss-in-page%2Ftrunk%2FRSSinpage.php)
 *   Forum: [Hacks](https://wordpress.org/support/forum/plugins-and-hacks/hacks/)
   
   In reply to: [Fetch content from an external link](https://wordpress.org/support/topic/fetch-content-from-an-external-link/)
 *  [msoftware](https://wordpress.org/support/users/msoftware/)
 * (@msoftware)
 * [11 years, 8 months ago](https://wordpress.org/support/topic/fetch-content-from-an-external-link/#post-5327940)
 * Another simple example is [https://wordpress.org/plugins/shortcurl/](https://wordpress.org/plugins/shortcurl/).
   You can find the sources here: [http://vanillaco.de/file.php?name=%2Fshortcurl%2Ftrunk%2Findex.php](http://vanillaco.de/file.php?name=%2Fshortcurl%2Ftrunk%2Findex.php)
 * Both plugins use `wp_remote_get()`
 *   Forum: [Hacks](https://wordpress.org/support/forum/plugins-and-hacks/hacks/)
   
   In reply to: [Any Way To Integrate Imgur with WordPress Image Upload System](https://wordpress.org/support/topic/any-way-to-integrate-imgur-with-wordpress-image-upload-system/)
 *  [msoftware](https://wordpress.org/support/users/msoftware/)
 * (@msoftware)
 * [11 years, 9 months ago](https://wordpress.org/support/topic/any-way-to-integrate-imgur-with-wordpress-image-upload-system/#post-5298392)
 * Hi,
 * you can do this like the media-instagram plugin. You can access the sources here:
   [http://vanillaco.de/file.php?name=%2Fmedia-instagram%2Ftrunk%2Fmedia-instagram.php](http://vanillaco.de/file.php?name=%2Fmedia-instagram%2Ftrunk%2Fmedia-instagram.php).
   You only have to replace the instagram api by the imgur api.
 * Regards
    Michael
 *   Forum: [Hacks](https://wordpress.org/support/forum/plugins-and-hacks/hacks/)
   
   In reply to: [SQL result next to menu name](https://wordpress.org/support/topic/sql-result-next-to-menu-name/)
 *  [msoftware](https://wordpress.org/support/users/msoftware/)
 * (@msoftware)
 * [11 years, 9 months ago](https://wordpress.org/support/topic/sql-result-next-to-menu-name/#post-5276481)
 * You can use $wpdb->get_row($sql) to select data with a own sql statement in WordPress.
   You can find a simple example at [http://vanillaco.de/file.php?name=%2Fjquery-banner-rotate%2Ftrunk%2Fdb%2Fbanner-rotativo-db.php#57-63](http://vanillaco.de/file.php?name=%2Fjquery-banner-rotate%2Ftrunk%2Fdb%2Fbanner-rotativo-db.php#57-63)
 * To show the data you can do it ile here: [http://vanillaco.de/file.php?name=%2Fjquery-banner-rotate%2Ftrunk%2Fpages%2Fbanners%2Fpage.php#31-32](http://vanillaco.de/file.php?name=%2Fjquery-banner-rotate%2Ftrunk%2Fpages%2Fbanners%2Fpage.php#31-32)
 *   Forum: [Hacks](https://wordpress.org/support/forum/plugins-and-hacks/hacks/)
   
   In reply to: [Set Custom Query Pagination](https://wordpress.org/support/topic/set-custom-query-pagination/)
 *  [msoftware](https://wordpress.org/support/users/msoftware/)
 * (@msoftware)
 * [11 years, 9 months ago](https://wordpress.org/support/topic/set-custom-query-pagination/#post-5296639)
 * Hi,
 * i don’t understand exactly your problem, but i found a similar solution in the
   userpress plugin.
 * …
    add_action( ‘the_post’, ‘upw_new_wiki_post_intercept’); function upw_new_wiki_post_intercept(
   $post) { $post->ID = ‘-1’; …
 * More about this:
    [http://vanillaco.de/file.php?name=%2Fuserpress%2Ftags%2F1.1.11%2Ftrunk%2Fquery-filter%2Fqfilter.php](http://vanillaco.de/file.php?name=%2Fuserpress%2Ftags%2F1.1.11%2Ftrunk%2Fquery-filter%2Fqfilter.php)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Flickr Photo Post] search for a photo and nothing happens](https://wordpress.org/support/topic/search-for-a-photo-and-nothing-happens/)
 *  Plugin Author [msoftware](https://wordpress.org/support/users/msoftware/)
 * (@msoftware)
 * [14 years, 11 months ago](https://wordpress.org/support/topic/search-for-a-photo-and-nothing-happens/#post-2178232)
 * Hi,
    I checked the Plugin on your site and it seems that everything works fine.
   Which browser are you using?

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