Derek
Forum Replies Created
-
Forum: Plugins
In reply to: [YouTube Simple Gallery] 'DESC' and 'ASC' is not working properlyThis is also happening for me. None of the sorting is working correctly.
Forum: Plugins
In reply to: [Database Sync] (HTTP 406) Remote site not accessibleSeeing the same error using Bluehost, pulling from remote into local dev environment. I’ve also treid it from the other way around.
Remote site not accessible (HTTP 406)or
Remote site not accessible (HTTP 0)+1 on this. Any workaround?
Forum: Plugins
In reply to: [Scalable Vector Graphics (SVG)] Using SVG in Media Uploader Not Working+1
I’m not able to upload a svg using the media uploaded in WordPress.Forum: Plugins
In reply to: [Video Thumbnails] Video Thumbnails Plugin Stopped WorkingStopped working for me as well, after months of success. Is there a fix in the works?
The plugin has stopped working all together. Been using it for months, and now it wont fetch video thumbnails
Error retrieving a thumbnail from the URL http://img.youtube.com/vi/bjekZJtQU8o/0.jpg
Libcurl error 0: Failed to connect to 2607:f8b0:4007:801::1008: Network is unreachable. If opening that URL in your web browser shows an image, the problem may be related to your web server and might be something your server administrator can solve.Forum: Fixing WordPress
In reply to: wp_get_post_categories($post->ID) – Category Names?I figured it out
$wpcats = wp_get_post_categories( $post->ID ); $cats = array(); foreach ($wpcats as $c) { $cats[] = get_cat_name( $c ); } $lister = implode(",", $cats);Then I could put $lister where I needed it.
Forum: Fixing WordPress
In reply to: wp_get_post_categories($post->ID) – Category Names?Thanks for the response, alchymyth. I really appreciate it! Unfortunately, that fix is not working to generate the category names. I am still getting a list of numeric ID’s
I wasn’t sure that you could pass any array other than array (‘fields’ => ‘ID’). As that is defined as the default.
Do I have to define the fields in the array before I call them, or is ‘names’ in the defaults for post categories? Better question is where would I find that information?