I am trying to get my feedwordpress feed to present posts from my own site along with and the same way as posts from from other sites. The hang of it is I used to have this working, but now I can’t seem to get it to work. Below is my current loop, which I recently revised to attempt to handle my own posts in one way, and syndicated posts another. I did not need to do this before, but all of my own posts are coming through without the proper permalink – they just point to the homepage (https://internetdistinction.com). The syndicated posts from other sites come through just fine. Does somebody have enough spare attention and insight to tell me why this is happening? I just want them all to be treated the same. I am syndicating my own posts to the feed as well, which worked before, and without this special hack (which doesn’t work for that matter) You can see the way the feed is working at the link. All those syndicated from the “bricoleur” and “Recognizing WSIS Impacts” feeds show up fine. The ones that should say they come from InternetDisinction itself show up as coming from “admin” and don’t link to the posts, but rather just to the homepage.
Seth Johnson
-
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
- <?php the_title(); ?> (<?php the_author(); ?> / <?php the_time('M d, Y'); ?>)
<?php wp_trim_excerpt() ?>
<?php endwhile; else : ?>
<?php esc_html_e( '(No posts available)' ); ?>
<?php endif; ?>