gaymoviesblog
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Flash Movies Not Appearing in WP Feed…bump
Forum: Fixing WordPress
In reply to: Flash Movies Not Appearing in WP Feed…anybody else using flash embed movies in posts and not getting them included in their site’s feed?
Forum: Themes and Templates
In reply to: Junk Characters in Title – How Resolve?bump for me need help
Forum: Plugins
In reply to: Looking for PlugIn that Overwrites WP RSS Templatehey otto,
i again edited the wp-rss2.php…but im still getting errors. i’m going to post the entire php code for this file. could you please simply cut and past and post back the code MINUS the description tag please? i’d be very grateful. im just not having much success at making this happen. much thanks in advance. best – vmc
unedited wp-rss2.php file
=========================================<?php
if (empty($wp)) {
require_once(‘wp-config.php’);
wp(‘feed=rss2’);
}header(‘Content-type: text/xml; charset=’ . get_settings(‘blog_charset’), true);
$more = 1;?>
<?php echo ‘<?xml version=”1.0″ encoding=”‘.get_settings(‘blog_charset’).'”?’.’>’; ?><!– generator=”wordpress/<?php bloginfo_rss(‘version’) ?>” –>
<rss version=”2.0″
xmlns:content=”https://purl.org/rss/1.0/modules/content/”
xmlns:wfw=”https://wellformedweb.org/CommentAPI/”
xmlns:dc=”https://purl.org/dc/elements/1.1/”
<?php do_action(‘rss2_ns’); ?>
><channel>
<title><?php bloginfo_rss(‘name’); ?></title>
<link><?php bloginfo_rss(‘url’) ?></link>
<description><?php bloginfo_rss(“description”) ?></description>
<pubDate><?php echo mysql2date(‘D, d M Y H:i:s +0000’, get_lastpostmodified(‘GMT’), false); ?></pubDate>
<generator>https://www.ads-software.com/?v=<?php bloginfo_rss(‘version’); ?></generator>
<language><?php echo get_option(‘rss_language’); ?></language>
<?php do_action(‘rss2_head’); ?>
<?php $items_count = 0; if ($posts) { foreach ($posts as $post) { start_wp(); ?>
<item>
<title><?php the_title_rss() ?></title>
<link><?php permalink_single_rss() ?></link>
<comments><?php comments_link(); ?></comments>
<pubDate><?php echo mysql2date(‘D, d M Y H:i:s +0000’, get_post_time(‘Y-m-d H:i:s’, true), false); ?></pubDate>
<dc:creator><?php the_author() ?></dc:creator>
<?php the_category_rss() ?><guid isPermaLink=”false”><?php the_guid(); ?></guid>
<?php if (get_settings(‘rss_use_excerpt’)) : ?>
<description><![CDATA[<?php the_excerpt_rss() ?>]]></description>
<?php else : ?>
<description><![CDATA[<?php the_excerpt_rss() ?>]]></description>
<?php if ( strlen( $post->post_content ) > 0 ) : ?>
<content:encoded><![CDATA[<?php the_content(”, 0, ”) ?>]]></content:encoded>
<?php else : ?>
<content:encoded><![CDATA[<?php the_excerpt_rss() ?>]]></content:encoded>
<?php endif; ?>
<?php endif; ?>
<wfw:commentRss><?php echo comments_rss(); ?></wfw:commentRss>
<?php rss_enclosure(); ?>
<?php do_action(‘rss2_item’); ?>
</item>
<?php $items_count++; if (($items_count == get_settings(‘posts_per_rss’)) && empty($m)) { break; } } } ?>
</channel>
</rss>Forum: Plugins
In reply to: Looking for PlugIn that Overwrites WP RSS Templateok…i use RSS2BLOG. it’s a hosted software application that posts “out” to blogs. for example, say i take feeds from wp sites #1, #2, and #3. i “load” those feeds into RSS2B. i set a chron job on each of those feeds. i also add additional text to those feeds. then i let the application post.
im having issues with feeds that originate from wp 2.0 blogs (mine) and are reposted by RSS2BLOG to my other wp 2.0 blogs.
the key problem is the description tag. im editing the wp-rss2 file again per your instructions. hopefully that will work. if not, then im considering editing the file/s that wp 2.0 uses to post (im hoping somewhere in that file/files i can change the way wp2.0 posts…specifically the removal of this bothersome description tag).
i’ll post in a minute if the revised rss2 file works.
thanks much – VMC
Forum: Plugins
In reply to: Looking for PlugIn that Overwrites WP RSS Templatehere’s how edited the wp-rss2.php file…
=================================
original (not full version) ..<guid isPermaLink=”false”><?php the_guid(); ?></guid>
<?php if (get_settings(‘rss_use_excerpt’)) : ?>
<description><![CDATA[<?php the_excerpt_rss() ?>]]></description>
<?php else : ?>
<description><![CDATA[<?php the_excerpt_rss() ?>]]></description>
<?php if ( strlen( $post->post_content ) > 0 ) : ?>
<content:encoded><![CDATA[<?php the_content(”, 0, ”) ?>]]></content:encoded>
<?php else : ?>
<content:encoded><![CDATA[<?php the_excerpt_rss() ?>]]></content:encoded>
<?php endif; ?>
<?php endif; ?>
<wfw:commentRss><?php echo comments_rss(); ?></wfw:commentRss>
<?php rss_enclosure(); ?>
<?php do_action(‘rss2_item’); ?>
</item>
<?php $items_count++; if (($items_count == get_settings(‘posts_per_rss’)) && empty($m)) { break; } } } ?>
</channel>
</rss>=================================
edited…
<guid isPermaLink=”false”><?php the_guid(); ?></guid>
<?php if ( strlen( $post->post_content ) > 0 ) : ?>
<content:encoded><![CDATA[<?php the_content(”, 0, ”) ?>]]></content:encoded>
<?php else : ?>
<content:encoded><![CDATA[<?php the_excerpt_rss() ?>]]></content:encoded>
<?php endif; ?>
<?php endif; ?>
<wfw:commentRss><?php echo comments_rss(); ?></wfw:commentRss>
<?php rss_enclosure(); ?>
<?php do_action(‘rss2_item’); ?>
</item>
<?php $items_count++; if (($items_count == get_settings(‘posts_per_rss’)) && empty($m)) { break; } } } ?>
</channel>
</rss>
===============================does that look right? no idea why i would get an error code…
thanks much VMC
Forum: Plugins
In reply to: Looking for PlugIn that Overwrites WP RSS Templateok…
#1 what php file does wp 2.0 use to parse and post? im new to WP, but I’m assuming this: if i remotely post to a wp blog that blog is using “something” to post that post…sorry but im trying to be as clear as possible…
#2 also i tested the wp-rss2.php file i edited. i then checked out the feed url in ie7.0 and got the following error:
==========================
Parse error: parse error, unexpected T_ENDIF in…public_html/wp-rss2.php on line 45
==========================
any idea why? i simply deleted the description tags u recommended.
thanks much – VMC
Forum: Plugins
In reply to: Looking for PlugIn that Overwrites WP RSS Templatek. that makes sense.
now im trying to make RSS2BlOG like it…for whatever reason this autoblog app doesn’t like the description edited out of the wp-rss2.php file.
that said…otto42, i just posted asking which php file is used when WP 2.0 intakes a feed, parses it, and displays the post. U know which file that is? im considering attacking my problem that way…
thanks for your assistance.
VMC
Forum: Plugins
In reply to: Looking for PlugIn that Overwrites WP RSS Templatehmmm
i pulled my wp-rss2 from my wp blog (im using 2.0) and here’s what my code block looks like
==========================================
<?php if (get_settings(‘rss_use_excerpt’)) : ?>
<description><![CDATA[<?php the_excerpt_rss() ?>]]></description>
<?php else : ?>
<description><![CDATA[<?php the_excerpt_rss() ?>]]></description>===========================================
the diffrence between us is you are geting
<?php if (get_option(‘rss_use_excerpt’)) : ?>
<description><![CDATA[<?php the_excerpt_rss() ?>]]></description>specifically, the “get option” where i’m getting “get settings”
i have no idea why but i suspect it’s version related.
lmk. and much thanks for your assistance.
gmb
Forum: Plugins
In reply to: Post Title’s with Comma’s Contain Junk Charactersanybody?
Forum: Plugins
In reply to: How Include Layout Tags in RSS Feed?bump
Forum: Plugins
In reply to: How Include Layout Tags in RSS Feed?bump
Forum: Plugins
In reply to: Can WP 2.0 Do an XML Dump?drmike ty!
i’m using 2.05 so no export in dashboard. i’ll try the plugin.
that said the “show all posts” option is best for me. thanks for the assist!
Forum: Plugins
In reply to: How Strip Out “Description” in WP RSS?anybody got any ideas on this one?
Forum: Plugins
In reply to: Looking for PlugIn that Overwrites WP RSS Templatei opened the wp-rss2.php file. the description tag is referred to twice (2x). i removed both. not the solution. specifically, which description tag gets removed? thanks!