Hi farahmaizar,
I’ve had a quick look at my local installation and meta slider posts don’t show up in my RSS Feed. I’m not sure why they would in yours… maybe your theme is including them somehow.
Because I can’t replicate it, I don’t know if I can fix it, but if you want to try something..
1. Go to Plugins > Editor.
2. Select Meta Slider from the drop down menu on the top right
3. Select ‘ml-slider.php’ from the files listed on the right (it might already be selected)
4. Scroll down to line 305 – you will see this code:
register_post_type('ml-slider', array(
'query_var' => false,
'rewrite' => false,
'public' => true,
'show_ui' => false,
'labels' => array(
'name' => 'Meta Slider'
)
));
5. Change that code to this:
register_post_type('ml-slider', array(
'query_var' => false,
'rewrite' => false,
'public' => true,
'show_ui' => false,
'exclude_from_search' => true,
'labels' => array(
'name' => 'Meta Slider'
)
));
(Notice I’ve added the ‘exclude_from_search’ bit – that is the only change). Warning, if you’re copying and pasting from here, be extra careful that the single quotes are not converted to curly single quotes. You would be best off manually typing in the “‘exclude_from_search’ => true,” bit!
If you could give that a go and let me know if it works, I’ll update the main plugin. If you’re not comfortable editing files and would like me to make the change for you, please send admin login details through https://www.metaslider.com/support, using ‘WPSupport’ as the purchase ID.
Regards,
Tom