Tagged Questions
0
votes
0answers
17 views
Post from one WordPress site to another
I have two sites running on WordPress. I have a form on one site that generates a custom post type, and I would like this custom post type to be posted to another WordPress site. How can I do this? Is ...
0
votes
1answer
32 views
Problem with articles feed: XML Parsing Error: XML or text declaration not at start of entity
I have a problem with WordPress articles feed. I have discover it analyzing what googlebot is scanning on my site and I disconvered that it is scanning only the feed and not the articles...
So I have ...
0
votes
2answers
100 views
Get image paths from RSS feeds
I'm displaying the content from one wordpress blog page on my server onto a different wordpress blog on the same server.
Apparently the only way is through RSS feed.
The images don't show up.
I ...
1
vote
1answer
26 views
date issue with category post retrival
I am trying to retrieve all posts from an rss feed from a category, and I have working code that does this. However, on one category I will only get all posts until a certain date. Any post prior to ...
1
vote
1answer
45 views
Cannot retrieve a custom RSS field from posts
The goal is to display a featured thumbnail micro thumb as a custom field in RSS.
This is what I've done:
//theme functions.php
function rss_post_thumbnail($content) {
global $post;
...
0
votes
1answer
61 views
fetching posts and showing on frontpage
I am having two sites viz. www.a.com and www.a.com/b .
Now, these are two seperate wp installations, in the same /root where 'b' is kind of an extended vertical site of 'a'.
I want to achieve the ...
1
vote
1answer
93 views
Addition Text to Post Titles (Custom Post Types) in RSS
First, I have used this code to add my custom post types into my feed (below):
function myfeed_request($qv) {
if (isset($qv['feed']))
$qv['post_type'] = get_post_types();
return $qv;
...
1
vote
2answers
1k views
Automatically Import WordPress Blog to Facebook Page
I managed to import wordpress post to Facebook with this:
http://www.insidefacebook.com/2009/02/22/how-to-import-your-blog-into-facebook/
When i create new post, Facebook doesn't show any new posts ...
0
votes
1answer
255 views
Creating separate feeds for custom post types
My site has a few custom post types, news, events, you-tube, etc. I'd like to create an rss feed for each post type as well as a main with all.
I've experimented an bit and found how to combine them ...
1
vote
4answers
1k views
Show 'Read more' in rss feed
How can I show 'Read more' links in rss feed instead of showing excerpt? The settings in reading only allow to choose between full content and excerpt.