radektj
Forum Replies Created
-
Forum: Plugins
In reply to: [Advanced Random Posts Widget] Can I insert this plugin (php) in my theme?Settings->Media and Medium Size
I have no idea… please check all extra plugin.
Forum: Plugins
In reply to: [Recent Posts Widget Extended] Displa post in horizontal layoutcustom css, 4 col:
.rpwe-block li { float: left; max-width: 23%; margin-right: 2%; }
Forum: Plugins
In reply to: [Advanced Random Posts Widget] Can I insert this plugin (php) in my theme?title <?php echo do_shortcode('[arpw thumbnail="true" limit="5" thumbnail_size="medium" thumbnail_align="center"]'); ?>
size – Settings->Media and Medium Size
title – text before the shortcode
Forum: Plugins
In reply to: [Advanced Random Posts Widget] Can I insert this plugin (php) in my theme?all options (shortcode arguments) – https://www.ads-software.com/plugins/advanced-random-posts-widget/
Forum: Plugins
In reply to: [Advanced Random Posts Widget] Can I insert this plugin (php) in my theme?https://developer.www.ads-software.com/reference/functions/do_shortcode/#comment-1958
<?php echo do_shortcode('[arpw thumbnail="true" limit="5" excerpt="true"]'); ?>
Forum: Plugins
In reply to: [Recent Posts Widget Extended] Settings??https://www.ads-software.com/plugins/recent-posts-widget-extended/
Shortcode and Screenshots
Forum: Plugins
In reply to: [Recent Posts Widget Extended] Taxonomies alignment.rpwe-category { display: table !important; }
?
Forum: Plugins
In reply to: [Recent Posts Widget Extended] Shorten post titleI have no idea
custom css, e.g. 4col:
.arpw-li { float: left; max-width: 24%; margin-right: 1%; }
Forum: Plugins
In reply to: [Recent Posts Widget Extended] Shorten post titleplugins/recent-posts-widget-extended/includes/functions.php and line 170:
$html .= '<h3 class="rpwe-title"><a href="' . esc_url( get_permalink() ) . '" title="' . sprintf( esc_attr__( 'Permalink to %s', 'recent-posts-widget-extended' ), the_title_attribute( 'echo=0' ) ) . '" rel="bookmark">' . esc_attr( get_the_title() ) . '</a></h3>';
replace (words, max 5)
$html .= '<h3 class="rpwe-title"><a href="' . esc_url( get_permalink() ) . '" title="' . sprintf( esc_attr__( 'Permalink to %s', 'recent-posts-widget-extended' ), the_title_attribute( 'echo=0' ) ) . '" rel="bookmark">' . wp_trim_words( get_the_title(), 5 ) . '</a></h3>';
or (characters, max 20)
$html .= '<h3 class="rpwe-title"><a href="' . esc_url( get_permalink() ) . '" title="' . sprintf( esc_attr__( 'Permalink to %s', 'recent-posts-widget-extended' ), the_title_attribute( 'echo=0' ) ) . '" rel="bookmark">' . mb_strimwidth( get_the_title(), 0, 20, '...' ) . '</a></h3>';
Forum: Plugins
In reply to: [Recent Posts Widget Extended] Remove BorderThe border line between posts? custom css:
.rpwe-block li { border-bottom: none !important; }
Forum: Plugins
In reply to: [Recent Posts Widget Extended] Not displaying PNG image thumbnailsJPG, PNG, all formats
shortcode? https://www.ads-software.com/plugins/recent-posts-widget-extended/ and thumb_height/thumb_width?
Forum: Plugins
In reply to: [Recent Posts Widget Extended] Adding new Categories to the WidgetIt’s impossible, only single posts, all options – https://www.ads-software.com/plugins/recent-posts-widget-extended/
Forum: Plugins
In reply to: [Recent Posts Widget Extended] HTML in excerptsI have no idea… the excerpt – plugins/recent-posts-widget-extended/includes/functions.php:
if ( $args['excerpt'] ) : $html .= '<div class="rpwe-summary">'; $html .= wp_trim_words( apply_filters( 'rpwe_excerpt', get_the_excerpt() ), $args['length'], ' …' ); if ( $args['readmore'] ) : $html .= '<a href="' . esc_url( get_permalink() ) . '" class="more-link">' . $args['readmore_text'] . '</a>'; endif; $html .= '</div>'; endif;