TecnoYounes
Forum Replies Created
-
Forum: Requests and Feedback
In reply to: bug wordpres.org siteyeah, you also have this problem or it’s only mine?
Forum: Requests and Feedback
In reply to: bug wordpres.org siteOk, i’ve just try with other browsers, and it seems that this problem happen “only” on Firefox and Chrome not in IE or Maxthon.
The problem it’s that in some plugin happen only with some image, like in this example: the image number 6 of this
https://wordpress.org/plugins/jetpack/screenshots/or like in this, where the problem happen with all the images:
https://wordpress.org/plugins/buddypress/screenshots/it’s very strange, because i tought it was a problem if they are JPEG/PNG but they are all in PNG..
Forum: Fixing WordPress
In reply to: How to show image before the text with the_post_thumbnail?ah and would also add the number of post from the widget option either
Forum: Fixing WordPress
In reply to: How to show image before the text with the_post_thumbnail?ah i ask you another thing, as i have add a select menu:
<label for="<?php echo $this->get_field_id('category1'); ?>"><?php _e('Category:'); ?></label> <select id="<?php echo $this->get_field_id('category1'); ?>" name="<?php echo $this->get_field_name('category1'); ?>" style="width:90%;"> <option value="0">Choose category:</option> <?php $cats = get_categories('hide_empty=0'); foreach ($cats as $cat) { $option = '<option value="'.$cat->term_id; if ($cat->term_id == $instance['category1']) { $option .='" selected="selected';} $option .= '">'; $option .= $cat->cat_name; $option .= ' ('.$cat->category_count.')'; $option .= '</option>'; echo $option; } ?> </select>to select the category where to pickup the article, how i can integrate it instead of using this custom code:
$custom = new WP_Query('posts_per_page=4&cat=13&orderby=date');
?Forum: Fixing WordPress
In reply to: How to show image before the text with the_post_thumbnail?yes it works like a charm, thank you very much alchymyt!
Forum: Fixing WordPress
In reply to: How to show image before the text with the_post_thumbnail?No it doesn’t work, it show me instead of the image:
the_post_thumbnail(, ‘medium’); echo text
Title of the post🙁
but also if it worked anyway i would that the image also has the link
Forum: Fixing WordPress
In reply to: Get Video Thumbnail in RSS feedHi, i also have this problem, do you resolved?
ora anyone can help me please?