visualadvance
Forum Replies Created
-
Forum: Plugins
In reply to: [Social Crowd] [plugin: Social Crowd] Feedburner always shows 0Agreed, mine has started doing it again. It was working for a while based on that Awareness API setting, but now it’s back to 0.
I need to confirm it, but I think the Twitter one is doing it as well. I noticed it said 0 the other day, but I will double-check.
Forum: Hacks
In reply to: Shortcode Within A get_postYou are a genius.
I didn’t try apply_filters yet, but do_shortcode did exactly what I needed. Much appreciated.
Forum: Fixing WordPress
In reply to: List of Category Properties?Post, and you will inevitably find the answer 5 minutes later.
I assume this is what I was looking for:
http://codex.wordpress.org/Function_Reference/get_categoryIt makes sense now because I was looking at get_categories (plural), and the properties would be a part of the category (single) documentation.
stdClass Object
(
[term_id] => 85
[name] => Category Name
[slug] => category-name
[term_group] => 0
[term_taxonomy_id] => 85
[taxonomy] => category
[description] =>
[parent] => 70
[count] => 0
[cat_ID] => 85
[category_count] => 0
[category_description] =>
[cat_name] => Category Name
[category_nicename] => category-name
[category_parent] => 70
)Forum: Fixing WordPress
In reply to: How to upload files and preserve Upper-Case file names?I am not sure if this has been answered yet, but I need a solution to this as well.
To me it is VERY important that wordpress doesn’t change my file names because I mostly deal with flash files I create. This means when i try to upload examples I need to upload an html, swf, and Adobe’s AC_RunActiveContent.js. If the swf or the .js file are renamed at all then the html file wont know where to locate them.
Extremely frustrating. Are there any answers out there for this that I am missing?