pjgalbraith
Forum Replies Created
-
Forum: Plugins
In reply to: [Recent Posts Plus] How to show author's posts in Recent Posts Plus?For meta_query add the following and change “1” to the author ID you want to filter by.
{ "author": "1" }
See the documentation here https://www.pjgalbraith.com/2011/08/recent-posts-plus/
Forum: Plugins
In reply to: [Recent Posts Plus] Still supported? Alternatives?I still plan to fix any issues in the future if that is what you are asking but as of right there is no need since it works with the latest version of WordPress.
Forum: Plugins
In reply to: [Recent Posts Plus] Columns and RowsThis can be done with css so it is part of theme development rather than a plugin issue please see https://alistapart.com/article/multicolumnlists
Regards
PatrickForum: Plugins
In reply to: [Recent Posts Plus] Private postHi Fran?ois,
Only logged in users should see the private posts as per https://codex.www.ads-software.com/Class_Reference/WP_Query#Status_Parameters
Just use this as your WP_Query option to force removal of private posts.
{
“post_status”:”publish”
}Forum: Plugins
In reply to: [Recent Posts Plus] Compatible with 3.5?Hi boatgalley,
Yes the plugin is compatible with 3.5 I just updated the plugin to reflect this. I’ve been using it with 3.5 since it was released without any problems.
Hey Guys,
A few people have notified me about issues with Multisite. All I can say is that I am looking into it.
Forum: Plugins
In reply to: [Recent Posts Plus] [Plugin: Recent Posts Plus] Put a default thumbnailHi benetj,
It works the same as usual see https://codex.www.ads-software.com/Post_Thumbnails#Setting_a_Post_Thumbnail.
Note: You need to make sure your theme supports post thumbnails see https://codex.www.ads-software.com/Post_Thumbnails#Enabling_Support_for_Post_Thumbnails for information on how to enable support.
Hi JJMatley,
It should be:
{
“cat”: “5, -6, -1”
}Sorry for the late replay I don’t get notified for forum posts.
I wrote a bit of info on my blog explaining how to fix issues with certain themes https://www.pjgalbraith.com/2011/12/default-thumbnail-plus/.
Also you might want to give the latest beta version a go which you can download here (it has support for more themes) https://github.com/patrickgalbraith/Default-Thumbnail-Plus/zipball/master
Sorry for the late replay I don’t get notified for forum posts.
I wrote a bit of info on my blog explaining how to fix issues with certain themes https://www.pjgalbraith.com/2011/12/default-thumbnail-plus/.
Also you might want to give the latest beta version a go which you can download here (it has support for more themes) https://github.com/patrickgalbraith/Default-Thumbnail-Plus/zipball/master
Hey guys,
Some themes do use their own custom implementation which I can’t override. However I wrote a bit of info on my blog explaining how to fix these issues https://www.pjgalbraith.com/2011/12/default-thumbnail-plus/.Also you might want to give the latest beta version a go which you can download here (it has support for more themes) https://github.com/patrickgalbraith/Default-Thumbnail-Plus/zipball/master
Hi Li-An,
Yes it works by modifying the post-thumbnail (also called featured image) for all or a selection of pages. Basically it fills a need when you want to display a default thumbnail for a large number of pages without manually adding a thumbnail for each page.
Hey Corey thanks for pointing out the issue I have updated the plugin to fix that issue and other issues related to the file chooser.
Forum: Plugins
In reply to: [Recent Posts Plus] [Plugin: Recent Posts Plus] Thumbnails not showingWhat plugin is causing the problem? It might not be too difficult to fix if I know which one it is.
Forum: Plugins
In reply to: [Recent Posts Plus] [Plugin: Recent Posts Plus] Thumbnails not showingForgot to mention if your theme doesn’t support post thumbnails you can fix it by adding this code to the themes functions.php file:
if ( function_exists( 'add_theme_support' ) ) { add_theme_support( 'post-thumbnails' ); }
Also I can’t test the plugin with your theme since it is not a free theme.