sheimdal1
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Blank homepage and cannot access admin areaHello,
We run our own server so have full access, Tried using our UpdraftPlus backup tool but cannot get anything to run. Sometimes we hace access to the admin section but we do not.
Hi,
After much consideration we believe your second suggestion is the best path for moving forward and resolving this issue. Since the featured image plugin works well on the news feed site but not adding images to the RSS feed we believe modifying the RSS plugin code makes the most sense.
Could you point us to some code samples that do what you’re saying in your second suggestion?
Thanks.
Forum: Plugins
In reply to: [Featured Images in RSS for Mailchimp & More] RSS with External ImageLets try it again without using markup;
https://wordpress.org/support/topic/multisite-rss-funtionality-issues?replies=3#post-6390057
Forum: Plugins
In reply to: [Featured Images in RSS for Mailchimp & More] RSS with External ImageThank you for your very quick response. We’re looking at the code for the plugin called “Featured Images in RSS w/ Size and Position” version 1.3.6.
We think we’re working on the right snippet of code and would ask if you could take a look and advise us. Here is the code;
================================================================
function featured_images_in_rss($content) {
global $post;
if ( has_post_thumbnail( $post->ID ) ){
firss_settings_init(); // checks and sets default values if options have never been set before.
$featured_images_in_rss_size = get_option(‘featured_images_in_rss_size’);
$featured_images_in_rss_css_code = firss_eval_css(get_option(‘featured_images_in_rss_css’));
$content = get_the_post_thumbnail( $post->ID, $featured_images_in_rss_size, array( ‘style’ => $featured_images_in_rss_css_code ) ) . $content;
}
return $content;
}add_filter(‘the_excerpt_rss’, ‘featured_images_in_rss’, 1000, 1);
add_filter(‘the_content_feed’, ‘featured_images_in_rss’, 1000, 1);====================================================================
Thank you.