Showing folllowing error after enabling wp debug. Iam using the latest version (Version: 2.0.3)
Notice: Undefined variable: text_domain in /home/user/public_html/wp-content/plugins/wp-category-posts-list/wp-category-post-list.php on line 56
]]>It is amazing that this plugin still has over 10,000 active installs. So I plan not to dissapoint everyone.
I have kick started the development and plan to release v3.0.0 with many modern things.
The codebase in the process of complete rewrite. I do not really plan to keep any code at all, but all the functionalities.
The development is happening at github https://github.com/swashata/WP-Category-Post-List
So stay tuned.
]]>WP Category Post List Widget PHP Compatibility Checker
I used the plugin https://www.ads-software.com/plugins/php-compatibility-checker/ to check PHP comaptability of several plugins I use, before I upgrade my server. According to PHP Compatibility Checker you plugin is not compatible with PHP 7. Can you fix this?
Hello,
I might missed something but I installed the widget, in order to display categorized posts on related pages. News on News pages, Reports on Reports page, etc.
I included the short code below in my news page :
[cplw post_type="post" taxanomy="category" taxanomy_term="5" width="500" height="500" effects="none" posts_to_show="-1" time="1000" order_by="date" excerpt_length="10" thumb_width="200" thumb_height="200" date_format="F j, Y" display="title,excerpt,comment_num,date,thumb,author" order="desc"]
and even with that, I see another post from my reports category displaying above the news posts.
I use 4.5.3 WP with MH Magazine Premium template
Any idea about what I could have done incorrectly ?
Thanks a lot !
https://www.ads-software.com/plugins/wp-category-posts-list/
]]>./includes/wp_cpl_output_gen.php
you can discover tha changes made at lines
77
143
212
278
<?php
/**
* The Output Generator Class
* This common class used by widget and shortcode
* @author Swashata <[email protected]>
* @package WordPress
* @subpackage WP Category Post List Plugin
* @version 2.0.0
*/
class itgdb_wp_cpl_output_gen {
private function get_posts($op, $cat_id = null) {
$arg = array();
//check if sticky
if(isset($op['post__in']) && !empty ($op['post__in']) && $cat_id === null) {
$arg['post__in'] = $op['post__in'];
return get_posts($arg);
}
//not sticky... so single category
/** Set the shortcut array for the order type **/
//1 => 'Date', 2 => 'Comment', 3 => 'ID', 4 => 'Title', 5 => 'Random'
$wp_cpl_sort_array = array(
1 => 'date',
2 => 'comment_count',
3 => 'ID',
4 => 'title',
5 => 'rand'
);
$arg = array(
'cat' => $cat_id,
'numberposts' => $op['list_num'],
'orderby' => $wp_cpl_sort_array[$op['sort_using']],
'order' => ((true == $op['sort_order'])? 'ASC' : 'DESC'),
'post__not_in' => $op['exclude']
);
return get_posts($arg);
}
public function shortcode_output_gen($op) {
$trans = itgdb_wp_cpl_loader::$text_domain;
$cat_id = (int) $op['cat_id'];
/** Calculate stick posts and excluded posts */
$wp_cpl_sticky = wp_parse_id_list($op['sticky_post']);
$wp_cpl_exclude = wp_parse_id_list($op['exclude_post']);
/** Hold the output to catch it */
ob_start();
?>
<div class="wp-cpl-sc-wrap wp-cpl-sc-theme-<?php echo $op['css_theme']; ?>">
<?php
if(count($wp_cpl_sticky)) {
$wp_cpl_post_sticky = $this->get_posts(array('post__in' => $wp_cpl_sticky));
foreach($wp_cpl_post_sticky as $post) {
?>
<div class="wp-cpl-sc-post wp-cpl-sc-sticky">
<?php if('true' == $op['is_thumb'] && ('' != ($thumb = get_the_post_thumbnail($post->ID, 'wp-cpl-sc-thumb', array('class' => 'wp-cpl-sc-thumb', 'title' => __('Permalink to: ', $trans) . $post->post_title))))) : ?>
<?php echo '<a class="wp-cpl-sc-thumba" href="' . get_permalink($post->ID) . '">' . $thumb . '</a>'; ?>
<?php endif; ?>
<h2><a href="<?php echo get_permalink($post->ID); ?>" title="<?php echo __('Permalink to: ', $trans) . $post->post_title; ?>"><?php echo get_the_title($post->ID); ?></a></h2>
<?php if($op['show_date'] == 'true' || $op['show_author'] == 'true' || $op['show_comments'] == 'true') : ?>
<div class="wp-cpl-sc-meta">
<p>
<?php if($op['show_date'] == 'true') : ?>
<span class="wp-cpl-sc-date"><?php echo __('Posted on ', $trans) . date('M jS, Y', strtotime($post->post_date)) . ' '; ?></span>
<?php endif; ?>
<?php if($op['show_author'] == 'true') : ?>
<span class="wp-cpl-sc-author">
<?php
//echo __('By ', $trans) . '<a href="' . get_the_author_meta('user_url', $post->post_author) . '">' . get_the_author_meta('display_name', $post->post_author) . '</a> ';
//radar
echo __('By ', $trans) . '<a href="' . get_author_posts_url($post->post_author) . '">' . get_author_posts_url($post->post_author). ' - '.get_the_author_meta('display_name', $post->post_author) . '</a> ';
?>
</span>
<?php endif; ?>
<?php if($op['show_comments'] == 'true') : ?>
<span class="wp-cpl-sc-comment"><?php echo '<a href="' . get_comments_link($post->ID) . '">' . $post->comment_count . ' ' . __ngettext('Comment', 'Comments', $post->comment_count, $trans) . '</a>' ?></span>
<?php endif; ?>
</p>
</div>
<?php endif; ?>
<?php if($op['show_excerpt'] == 'true') : ?>
<div class="wp-cpl-sc-entry">
<p>
<?php echo (('true' == $op['optional_excerpt'] && $post->post_excerpt != '')? $post->post_excerpt : itgdb_wp_cpl_loader::shorten_string($post->post_content, $op['excerpt_length'])); ?>
</p>
<?php if('' != $op['read_more']) : ?>
<p class="wp-cpl-sc-readmore">
<a href="<?php echo get_permalink($post->ID); ?>"><?php echo $op['read_more']; ?></a>
</p>
<?php endif; ?>
</div>
<?php endif; ?>
<div class="clear"></div>
</div>
<?php
}
}
/**
* Merge the sticky and exclude posts array
* So no duplicate post is shown
*/
$wp_cpl_exclude = array_merge($wp_cpl_sticky, $wp_cpl_exclude);
$wp_cpl_exclude = array_unique($wp_cpl_exclude);
/** Set the arguments of the get_posts function */
$get_posts_args = array(
'list_num' => $op['list_num'],
'sort_using' => $op['sort_using'],
'sort_order' => (($op['sort_order'] == 'asc')? true : false),
'exclude' => $wp_cpl_exclude
);
/** Actually get the post */
$wp_cpl_posts = $this->get_posts($get_posts_args, $cat_id);
foreach($wp_cpl_posts as $post) {
?>
<div class="wp-cpl-sc-post">
<?php if('true' == $op['is_thumb'] && ('' != ($thumb = get_the_post_thumbnail($post->ID, 'wp-cpl-sc-thumb', array('class' => 'wp-cpl-sc-thumb', 'title' => __('Permalink to: ', $trans) . $post->post_title))))) : ?>
<?php echo '<a class="wp-cpl-sc-thumba" href="' . get_permalink($post->ID) . '">' . $thumb . '</a>'; ?>
<?php endif; ?>
<h2><a href="<?php echo get_permalink($post->ID); ?>" title="<?php echo __('Permalink to: ', $trans) . $post->post_title; ?>"><?php echo get_the_title($post->ID); ?></a></h2>
<?php if($op['show_date'] == 'true' || $op['show_author'] == 'true' || $op['show_comments'] == 'true') : ?>
<div class="wp-cpl-sc-meta">
<p>
<?php if($op['show_date'] == 'true') : ?>
<span class="wp-cpl-sc-date"><?php echo __('Posted on ', $trans) . date('M jS, Y', strtotime($post->post_date)) . ' '; ?></span>
<?php endif; ?>
<?php if($op['show_author'] == 'true') : ?>
<span class="wp-cpl-sc-author">
<?php
//echo __(' - By ', $trans) . '<a href="' . get_the_author_meta('user_url', $post->post_author) . '">' . get_the_author_meta('display_name', $post->post_author) . '</a> ';
//radar
echo __(' - By ', $trans) . '<a href="' . get_author_posts_url($post->post_author) . '">' . get_the_author_meta('display_name', $post->post_author) . '</a> ';?></span>
<?php endif; ?>
<?php if($op['show_comments'] == 'true') : ?>
<span class="wp-cpl-sc-comment"><?php echo ' - <a href="' . get_comments_link($post->ID) . '">' . $post->comment_count . ' ' . __ngettext('Comment', 'Comments', $post->comment_count, $trans) . '</a>' ?></span>
<?php endif; ?>
</p>
</div>
<?php endif; ?>
<?php if($op['show_excerpt'] == 'true') : ?>
<div class="wp-cpl-sc-entry">
<p>
<?php echo (('true' == $op['optional_excerpt'] && $post->post_excerpt != '')? $post->post_excerpt : itgdb_wp_cpl_loader::shorten_string($post->post_content, $op['excerpt_length'])); ?>
</p>
<?php if('' != $op['read_more']) : ?>
<p class="wp-cpl-sc-readmore">
<a href="<?php echo get_permalink($post->ID); ?>"><?php echo $op['read_more']; ?></a>
</p>
<?php endif; ?>
</div>
<?php endif; ?>
<div class="clear"></div>
</div>
<?php
}
?>
</div>
<?php
return ob_get_clean();
}
public function widget_output_gen($op, $cat_id, &$i) {
$wp_cat_list_itg_tans = itgdb_wp_cpl_loader::$text_domain;
$post_output = '';
/**
* Set the before post list HTML
*/
$before_link = (true == $op['list_style'])? '<li class="%list_class%">' : $op['before_link'];
$after_link = (true == $op['list_style'])? '</li>' : $op['after_link'];
/** Calculate stick posts and excluded posts */
$wp_cpl_sticky = wp_parse_id_list($op['sticky_post']);
$wp_cpl_exclude = wp_parse_id_list($op['exclude_post']);
/** First get the Sticky posts */
if(count($wp_cpl_sticky)) {
$wp_cpl_post_sticky = $this->get_posts(array('post__in' => $wp_cpl_sticky));
/** Loop through the sticky posts */
foreach($wp_cpl_post_sticky as $post) {
/** Initiate the post list widget HTML */
$default_class = 'wp-cpl-sticky';
$post_output .= str_ireplace('%list_class%', "{$default_class}", $before_link);
/** is thumbnail? */
$post_output .= (((true == $op['is_thumb']) && ('' != ($wp_cpl_post_thumb = get_the_post_thumbnail($post->ID, 'wp-cpl-post-thumb'))))? '<span class="wp-thumb-overlay"><span class="' . $op['thumb_class'] . '"><a href="'. get_permalink($post->ID) . '">' . $wp_cpl_post_thumb . '</span></span>' : '');
/** Add up the actual permalink and post title */
$post_output .= '<a href="' . get_permalink($post->ID) . '" title="' . __('Permalink to: ', $wp_cat_list_itg_tans) . $post->post_title . '" target="' . ((false == $op['open_in'])? '_blank' : '_self') . '">' . $post->post_title . '</a>';
/** Show comments? */
$post_output .= ((true == $op['show_comments'])? ' <span class="wp-cpl-comment"><a href="' . get_comments_link($post->ID) . '">' . $post->comment_count . ' ' . __ngettext('Comment', 'Comments', $post->comment_count, $wp_cat_list_itg_tans) . '</a></span>' : '');
/** Add date? */
$post_output .= ((true == $op['show_date'])? ' <span class="wp-cpl-date">' . __('Posted on: ', $wp_cat_list_itg_tans) . date('M jS, Y', strtotime($post->post_date)) . '</span>' : '');
/** Add author? */
//$post_output .= ((true == $op['show_author'])? ' <span class="wp-cpl-author">' . __('By ', $wp_cat_list_itg_tans) . '<a href="' . get_the_author_meta('user_url', $post->post_author) . '">' . get_the_author_meta('display_name', $post->post_author) . '</a></span>' : '');
//radar
$post_output .= ((true == $op['show_author'])? ' <span class="wp-cpl-author">' . __('By ', $wp_cat_list_itg_tans) . '<a href="' . get_author_posts_url( $post->post_author) . '">' . get_the_author_meta('display_name', $post->post_author) . '</a></span>' : '');
/** Add excerpt? */
$post_output .= ((true == $op['show_excerpt'])? '<p class="wp-cpl-excerpt">' . ((true == $op['optional_excerpt'] && $post->post_excerpt != '')? $post->post_excerpt : itgdb_wp_cpl_loader::shorten_string($post->post_content, $op['excerpt_length'])) . '</p>' : '');
/** Done. Now close the Widget */
$post_output .= $after_link . "\n";
}
}
/**
* Merge the sticky and exclude posts array
* So no duplicate post is shown
*/
$wp_cpl_exclude = array_merge($wp_cpl_sticky, $wp_cpl_exclude);
$wp_cpl_exclude = array_unique($wp_cpl_exclude);
/** Set the arguments of the get_posts function */
$get_posts_args = array(
'list_num' => $op['list_num'],
'sort_using' => $op['sort_using'],
'sort_order' => $op['sort_order'],
'exclude' => $wp_cpl_exclude
);
/** Actually get the post */
$wp_cpl_posts = $this->get_posts($get_posts_args, $cat_id);
/**
* Free memory from unneeded variables
* @since 1.1.0
*/
unset($wp_cpl_sticky);
unset($wp_cpl_exclude);
unset($wp_cpl_post_sticky);
unset($wp_cpl_sort_array);
unset($get_posts_args);
/** Loop through the posts */
$i = 0;
foreach($wp_cpl_posts as $post) {
/** Initiate the post list widget HTML */
$default_class = ((true == $op['alternate_list_css'])? (($i%2 == 0)? 'wp-cpl wp-cpl-even' : 'wp-cpl wp-cpl-odd') : 'wp-cpl');
$post_output .= str_ireplace('%list_class%', "{$default_class}", $before_link);
/** is thumbnail? */
$post_output .= (((true == $op['is_thumb']) && ('' != ($wp_cpl_post_thumb = get_the_post_thumbnail($post->ID, 'wp-cpl-post-thumb'))))? '<span class="wp-thumb-overlay"><span class="' . $op['thumb_class'] . '"><a href="'. get_permalink($post->ID) . '">' . $wp_cpl_post_thumb . '</a></span></span>' : '');
/** Add up the actual permalink and post title */
$post_output .= '<a href="' . get_permalink($post->ID) . '" title="' . __('Permalink to: ', 'wp-cat-list-itg') . $post->post_title . '" target="' . ((false == $op['open_in'])? '_blank' : '_self') . '">' . $post->post_title . '</a>';
/** Show comments? */
$post_output .= ((true == $op['show_comments'])? ' <span class="wp-cpl-comment"><a href="' . get_comments_link($post->ID) . '">' . $post->comment_count . ' ' . __ngettext('Comment', 'Comments', $post->comment_count, 'wp-cat-list-itg') . '</a></span>' : '');
/** Add date? */
$post_output .= ((true == $op['show_date'])? ' <span class="wp-cpl-date">' . __('Posted on: ', $wp_cat_list_itg_tans) . date('M jS, Y', strtotime($post->post_date)) . '</span>' : '');
/** Add author? */
//$post_output .= ((true == $op['show_author'])? ' <span class="wp-cpl-author">' . __('By ', $wp_cat_list_itg_tans) . '<a href="' . get_the_author_meta('user_url', $post->post_author) . '">' . get_the_author_meta('display_name', $post->post_author) . '</a></span>' : '');
//radar
$post_output .= ((true == $op['show_author'])? ' <span class="wp-cpl-author">' . __('By ', $wp_cat_list_itg_tans) . '<a href="' . get_author_posts_url( $post->post_author) . '">' . get_the_author_meta('display_name', $post->post_author) . '</a></span>' : '');
/** Add excerpt? */
$post_output .= ((true == $op['show_excerpt'])? '<p class="wp-cpl-excerpt">' . ((true == $op['optional_excerpt'] && $post->post_excerpt != '')? $post->post_excerpt : itgdb_wp_cpl_loader::shorten_string($post->post_content, $op['excerpt_length']) ) . '</p>' : '');
/** Done. Now close the Widget */
$post_output .= $after_link . "\n";
$i++;
}
return $post_output;
}
}
https://www.ads-software.com/plugins/wp-category-posts-list/
]]>I’m using this under WP 4.0. It seems to work, but I’d love to find a better alternative to it, since 2-year-old plugins give me the heebeegeebees. Any ideas?
https://www.ads-software.com/plugins/wp-category-posts-list/
]]>Nothing works: the widget is not visible and the shortcode does not work either. Any issues with ver. 3.9?
https://www.ads-software.com/plugins/wp-category-posts-list/
]]>Does WP Category Post List Widget work with Multisite?
https://www.ads-software.com/plugins/wp-category-posts-list/
]]>Hello –
I’m using a custom author field (following instructions from https://www.wpbeginner.com/wp-tutorials/how-to-rewrite-guest-author-name-with-custom-fields-in-wordpress/ and I’m wondering how to make that field be used on the category post list. I tried a couple edits to:
<span class=”wp-cpl-sc-author”><?php echo __(‘ – By ‘, $trans) . ‘post_author) . ‘”>’ . get_the_author_meta(‘display_name’, $post->post_author) . ‘ ‘; ?></span>
(like using “the_author” in place of “post_author”) but none seemed to work. Anyone know how to do this? Thanks!
https://www.ads-software.com/plugins/wp-category-posts-list/
]]>Within “wp-category-post-list.php” the variable $text_domain is not defined.
Please fix and update so that I can update from the CORE, thank you.
https://www.ads-software.com/plugins/wp-category-posts-list/
]]>FYI: I’m seeing this in my dashboard pages upon initial install:
Warning: extract() expects parameter 1 to be array, boolean given in /………/wp-content/plugins/wp-category-posts-list/classes/loader.php on line 61
https://www.ads-software.com/plugins/wp-category-posts-list/
]]>Some posts have multiple categories and I want to exclude some of them. I see an option to exclude post ID’s but what about categories?
https://www.ads-software.com/plugins/wp-category-posts-list/
]]>Hi there,
I am in the middle of setting up WP Category Post list on my site. I am using the short code and was wondering if there was a way to display the manual excerpt instead of the standard post excerpt.
Many thanks!
https://www.ads-software.com/plugins/wp-category-posts-list/
]]>Is it possible to exclude the posts (articles) according to numbers, not an ID. For instance, the first category numbers
https://www.ads-software.com/plugins/wp-category-posts-list/
]]>Hi there,
Thanks for your great plugin.
I’ve just got one question. I’m using this plugin for some sticky posts.
The problem is that I don’t manage to organize these posts. It seems that the default sort order is by date DESC.
I would like to organize them by date ASC.
If i change the order of the sticky posts (by id) in the shortcode, it doesn’t do any change.
I don’t manage to find in the files where I could make this change.
Regards
Matthieu
https://www.ads-software.com/plugins/wp-category-posts-list/
]]>I am using this plugin on a site and have added the short code to several pages. On one of the pages we would like to have a much longer excerpt than on all the others. can I control the excerpt length within the short code?
https://www.ads-software.com/plugins/wp-category-posts-list/
]]>I have a Feature image showing in each post, as well as the thumbnail in the category list.
I’d like to add a secondary image that would show up as the thumbnail only in the category list.
So I would be able to set 2 different images for each post, one for the thumbnail and one as the main for the single post.
I thought I could make this work with “Multiple Post Thumbnail plugin”.
By adding…
if (class_exists(‘MultiPostThumbnails’)) {
new MultiPostThumbnails(array(
‘label’ => ‘Thumbnail Image – 135 x 125’,
‘id’ => ‘secondary-image’,
‘post_type’ => ‘post’
) );
-> in functions.php
and adding ….
<?php if (class_exists(‘MultiPostThumbnails’)) : MultiPostThumbnails::the_post_thumbnail(get_post_type(), ‘secondary-image’); endif; ?>
-> where I would like it to show up.
I was able to assign a secondary image for each post in admin. But this secondary image doesn’t show in the widget output.
Can you point me in the right direction as to where I can add the “MultiPostThumbnails” output code in your widget php files in order for it to simply just show up?
Or if you have a better solution that would be much appreciated.
https://www.ads-software.com/plugins/wp-category-posts-list/
]]>In 3.7.1 version when i try to activate plugin i take the message:
The plugin does not have a valid header.
https://www.ads-software.com/plugins/wp-category-posts-list/
]]>You have the solution, you need to enter a code in the wp_cpn_ouput_gen.php. Around line 33 is the next code:
$arg = array(
'cat' => $cat_id,
'numberposts' => $op['list_num'],
'orderby' => $wp_cpl_sort_array[$op['sort_using']],
'order' => ((true == $op['sort_order'])? 'ASC' : 'DESC'),
'post__not_in' => $op['exclude']
);
Just add your own line:
$arg = array(
'post_type' => get_post_types(),
'cat' => $cat_id,
'numberposts' => $op['list_num'],
'orderby' => $wp_cpl_sort_array[$op['sort_using']],
'order' => ((true == $op['sort_order'])? 'ASC' : 'DESC'),
'post__not_in' => $op['exclude']
);
https://www.ads-software.com/plugins/wp-category-posts-list/
]]>How can I display the post list with serial number . Couldn’t get anywhere how to use “List Style” param ? please help. I am using below shortcode :
[wp_cpl_sc cat_id=8 list_num=4 css_theme=0 SHOW_DATE=”false” SHOW_AUTHOR=”false” SHOW_COMMENTS=”false” IS_THUMB=”false” Show_excerpt=”false”]
Thanks in advance.
Cheers
Amit
https://www.ads-software.com/plugins/wp-category-posts-list/
]]>here is my code (space added on purpose)
[ wp_cpl_sc cat_id=4 css_theme=2 is_thumb=”true” list_num=-1 sort_order=”asc” show_author=”true”]
and here is how my posts are looking
https://urapoet.com/multimedia-u/ ?
can any one help me with this as you can see i don’t even have the read more in there but is still showing i would like it to look just like the example
https://www.ads-software.com/plugins/wp-category-posts-list/
]]>sorry. simple question. can’t get it to work.
for shortcode i’ve placed on pages…how to open links in a new window?
thank you!
thanks for the great plugin!!! excellent!!!
https://www.ads-software.com/plugins/wp-category-posts-list/
]]>I just installed this plugin with version 3.6.1 and so far it appears to be working as designed. I’d like to have the full content of the posts displayed rather than it being truncated after so many characters. Is this possible? I’d be willing to make a custom modification to the plugin for each release if necessary.
Thanks!
https://www.ads-software.com/plugins/wp-category-posts-list/
]]>Hey,
Great plugin! I have a small problem –
The author’s name is clickable, but it leads to the homepage, insted of the authors page.
https://jokopost.getraffic.net/
Thanks!
Tal
https://www.ads-software.com/plugins/wp-category-posts-list/
]]>Hi,
Using the widget, I can list posts relating to the current category. If I use the shortcode, I can lists posts with cat_id=x. If I want to use a template tag to do the same as the widget… I can’t – as far as I can tell there isn’t one, and using do_shortcode won’t work, as leaving out the cat_id will bring up everything.
Of course, I might be missing something!
But here’s how I got around my problem. First, determine the category id; then manually build your shortcode before ‘do’ing it (you don’t need all the options I’m using here):
$scategory = get_the_category();
$scat2 = $scategory[0]->cat_ID;
$shortcat="[wp_cpl_sc cat_id=" . $scat2 . " show_author=false optional_excerpt=true read_more='' show_date=false show_comments=false is_thumb=true]";
echo (do_shortcode($shortcat));
Like I said, I might have missed there being a template tag, but if there really isn’t one then I hope my hack helps.
Gary
https://www.ads-software.com/plugins/wp-category-posts-list/
]]>The authors show up the same for each post even though there should be three different authors. I’m not sure if the problem is with this plugin or the Bylines plugin I’m using. Or perhaps the two aren’t being compatible. Any suggestions?
Thanks.
(Top left sidebar: https://mennoweekly.org/wp/)
https://www.ads-software.com/plugins/wp-category-posts-list/
]]>Just checking in to see if anyone has had any problems with this plugin in WordPress version 3.6.1.
It seems to be working fine for me, but I’m still looking for other people’s feedback since the plugin author hasn’t updated the compatibility yet.
Thanks!
https://www.ads-software.com/plugins/wp-category-posts-list/
]]>I just downloaded this plug in today, it is exactly what I need, but somehow it doesn’t show on my test page.
Here is the link
https://www.arsov.net/Wordpress/
I use this site only for testing the plugins before using themon other pages.
Thanks for your help
Alex
https://www.ads-software.com/plugins/wp-category-posts-list/
]]>Is it possible to create my own view templates? I do not want to edit the plugin files.
https://www.ads-software.com/plugins/wp-category-posts-list/
]]>I want to highlight only title in a bold.
Unable to make that as it gets bold whole text which is appearing.
Please suggest
https://www.ads-software.com/plugins/wp-category-posts-list/
]]>