wpkd
Forum Replies Created
-
Forum: Plugins
In reply to: [WP RSS Multi Importer] Shortcode for feed ID?Hello Elintarvike,
That’s true and probably the most easy way of achieving what I want. However, with over 50 feeds and counting, it would take a serious amount of sorting and counting.
I’ll dive into PHP and see if I can do a database query and bring up items some other way. Meanwhile, if anyone has an idea about the above topic, please let me know! 🙂
Forum: Plugins
In reply to: [WP RSS Multi Importer] Shortcode for feed ID?Bumping for support. Any answer would be appreciated!
Forum: Plugins
In reply to: [WP RSS Multi Importer] How can i customize Headlines length??I have something that works, but cuts the headlines by number of characters. You could do the same with words, but I need a set amount of characters for my site. This works for shortcode, not sure about the rest…
In your back-end, go to: Plugins > EDITOR
Select the plugin “RSS Multi Import”I use the template “Simple Bullet List” so I edit “wp-rss-multi-importer/templates/simple_bullet_list.php” with the following:
$charlimit = “60”;
Then add substr() to the code. In my case, the output for headlines is:
$readable .= '<li class="title">'.substr($items["mytitle"], 0, $charlimit).' - <span class="date">'. date_i18n($strDate,$items["mystrdate"]).'</span>';Forum: Plugins
In reply to: [WP RSS Multi Importer] Shortcode for feed ID?To add to my previous post: If this is not currently possible, can this post serve as a feature request? 🙂