transitmonger
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Change The Word BlogRoll To LinksNote that for some themes the word ‘Blogroll’ may actually be an image.
To change this you will actually need to change the image, which will be located in the wp-content/themes/name-of-your-theme-here/images/ folder.
Forum: Themes and Templates
In reply to: Image Viewing ProblemsHi! I’m having a similar problem.
My file is definitely there, and wordpress can reach it through the url() function. But I can’t reach it by direct navigation nor through <img src=”” />.
Therefore, it must be permissions. How do I change the permissions?
Forum: Fixing WordPress
In reply to: Get enclosure URL with get_post_metaaha! Try this:
array_shift(get_enclosed($post->ID))
Forum: Fixing WordPress
In reply to: Get enclosure URL with get_post_metaI second this problem.
More info:
Noting that the key enclosure was passing extra info, I tried to pass “$single = false” (i.e., asked for an array instead of a string.)Unfortunately, it turns out that even with $single=false, it’s still passing as though it were a single item. (i.e., it’s not an array.)
Maybe there’s some sort of record separator for enclosures or something? It’s probably a record separator that’s standard for RSS, afterall, that’s the reason for enclosures, I guess.
Here’s a better question. If I attach media to a post, how can I get that media?
Thanks, T.