Hey fellas, i tried unsuccessful to formate the output into a list where all entrys are on a horizontal line, side by side.
is there a special way to do this? cause using #li {float:left} didnt work ??
https://www.ads-software.com/plugins/yet-another-featured-posts-plugin/
]]>This is a great plugin but is there a way to disable related posts appearing on certain posts and enable it for another posts?
I sometimes post quotes as a short post and I don’t want related posts appearing below these quotes. I do, however, want related posts below longer posts.
My blog is https://www.workreadplay.com
Thanks.
https://www.ads-software.com/plugins/yet-another-featured-posts-plugin/
]]>As strange as it sounds, the widget doesn’t appear listed on the widget area.
I tried deactivating all the other plugins to make sure is not a conflict, but the problem remains.
https://www.ads-software.com/extend/plugins/yet-another-featured-posts-plugin/
]]>i’m using
<?php get_featured_posts(array( ‘method’ => ‘arr’)); ?>
to call the plugin and it is getting most of the information fine. However how do I get it to return an image for the posts? The posts all have featured images selected.
I can’t see anything in the documentation about where you should assign an image. Is there something else I need to do to display images for each featured post?
thanks
Rachael
https://www.ads-software.com/extend/plugins/yet-another-featured-posts-plugin/
]]>This plugin generates a number of errors throughout the admin UI upon activation (I’m in development mode with WP_DEBUG on). The errors have to do with using deprecated user levels instead of roles and capabilities:
Notice: has_cap was called with an argument that is deprecated since version 2.0! Usage of user levels by plugins and themes is deprecated. Use roles and capabilities instead.
Looking at the plugin’s code, it was not designed for roles and capabilities and needs to be updated. I would not recommend using this plugin until it has been updated to meet the needs of the latest WordPress.
https://www.ads-software.com/extend/plugins/yet-another-featured-posts-plugin/
]]>Hi there,
I have one question if someone can help me…is there any way to display custom post type & posts along (in the same loop). Specifically, I would like to display the featured post regardless of whether the post or custom post type are checked.
Something like in this peace of code (projects is my custom post type):
‘get_featured_posts( array(‘post_type’ => ‘projects’) && array(‘post_type’ => ‘post’) ); $my_query = new WP_Query(‘post_type=projects’ && ‘post_type=post’); while ($my_query->have_posts()) : $my_query->the_post();’
tnx
https://www.ads-software.com/extend/plugins/yet-another-featured-posts-plugin/
]]>I know very little about coding, so some help would be really great.
https://www.ads-software.com/extend/plugins/yet-another-featured-posts-plugin/
]]>It doesn’t seem to call the custom post types. If it does, I can’t figure out how! hope that helps.
https://www.ads-software.com/extend/plugins/yet-another-featured-posts-plugin/
]]>Using “the post” method does not return to the original Loop query the second time it is ran. I wonder if it’s an issue with 3.2.1?
https://www.ads-software.com/extend/plugins/yet-another-featured-posts-plugin/
]]>Hi,
I don’t get how this plugin works. I have two posts with exactly the same tags yet the plugin doesn’t see them as related.
Except a small minority, almost all my posts have zero related posts according to the plugin.
So I wish to know how does this plugin basically works ?
https://www.ads-software.com/extend/plugins/yet-another-featured-posts-plugin/
]]>Heyas, I’m using YAFPP and when I include the widget it never shows the excerpt. I have excerpts in the featured posts and have the “Post Excerpt” setting on and use 20 as length.
What can I do here?
Thanks!
https://www.ads-software.com/extend/plugins/yet-another-featured-posts-plugin/
]]>In one of my page templates I’m calling get_featured_posts() function and using the loop method.
It is causing the is_home() function to return true on any page that uses this template. If I remove the YAFPP function call, is_home() then returns false like it should.
]]>I’m really interested in using the array functionality but I need a little help with the code. OP can you please put together a short example on how to display the image, title, and then the excerpt? I tried calling the variables to no avail ??
https://www.ads-software.com/extend/plugins/yet-another-featured-posts-plugin/
]]>as per title – the heading is there, but no tickboxes to tick
]]>I’m looking for a plugin, that allows you to select pages as featured, but the “Allow Pages to be featured” setting in YAFPP doesn’t get saved at least in the latest version of WP. Otherwise this plugin would be perfect for my needs. Would this problem be easy to fix?
https://www.ads-software.com/extend/plugins/yet-another-featured-posts-plugin/
]]>Hi.
As soon as I add <?php get_featured_posts(); ?>
to my template in single view, the original posts comments disappear.
If I make a comment, the comment goes to the last featured post I selected in admin and not in the post I’m doing the comment.
So for example if I go to the “Hello World” post, I see the post correctly and in comments I see: Comments for “My featured post”. (One of the posts I selected as featured)
Any idea how to fix this ?
Thanks.
]]>Hi,
Is there a way to filter the featured posts by category? I couldn’t find a way!
Can you send an example? Please?
Thanks very much.
https://www.ads-software.com/extend/plugins/yet-another-featured-posts-plugin/
]]>It might be nice, in future releases, to exclude sticky posts from the Featured Posts, since this group of posts by definition stands apart from the normal functionality of reverse-chronological post listing. As the plugin is now, stickies behave as normal, floating to top of any the featured posts query and pushing out any featured posts that are beyond the max.
In my own modified version, I first added a single line at around line 39:
$sticky = get_option('sticky_posts');
Then I changed all instances of:
$query_opts = apply_filters('yafpp_get_featured_posts_query', array(
'post__in' => $featured_arr,
'posts_per_page' => $yafpp_opts['max_posts'],
));
to:
$query_opts = apply_filters('yafpp_get_featured_posts_query', array(
'post__in' => $featured_arr,
'caller_get_posts' => 1,
'post__not_in' => $sticky,
'posts_per_page' => $yafpp_opts['max_posts'],
));
Once that was done, the featured posts query behaved as intended, ignoring sticky posts.
]]>