Title: starson02's Replies | WordPress.org

---

# starson02

  [  ](https://wordpress.org/support/users/starson02/)

 *   [Profile](https://wordpress.org/support/users/starson02/)
 *   [Topics Started](https://wordpress.org/support/users/starson02/topics/)
 *   [Replies Created](https://wordpress.org/support/users/starson02/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/starson02/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/starson02/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/starson02/engagements/)
 *   [Favorites](https://wordpress.org/support/users/starson02/favorites/)

 Search replies:

## Forum Replies Created

Viewing 5 replies - 1 through 5 (of 5 total)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WPGlobus] Featured image is not shown](https://wordpress.org/support/topic/featured-image-is-not-shown/)
 *  Thread Starter [starson02](https://wordpress.org/support/users/starson02/)
 * (@starson02)
 * [8 years, 3 months ago](https://wordpress.org/support/topic/featured-image-is-not-shown/#post-9962086)
 * Thanks!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WPGlobus] Featured image is not shown](https://wordpress.org/support/topic/featured-image-is-not-shown/)
 *  Thread Starter [starson02](https://wordpress.org/support/users/starson02/)
 * (@starson02)
 * [8 years, 3 months ago](https://wordpress.org/support/topic/featured-image-is-not-shown/#post-9961992)
 * The error is in the line
    if(strpos( $url, home_url() ) === false) return false;
   because $url of the image is /siteurl/uploads/… and home_url() is /siteurl/ +‘
   language’
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WPGlobus] Featured image is not shown](https://wordpress.org/support/topic/featured-image-is-not-shown/)
 *  Thread Starter [starson02](https://wordpress.org/support/users/starson02/)
 * (@starson02)
 * [8 years, 3 months ago](https://wordpress.org/support/topic/featured-image-is-not-shown/#post-9961946)
 * I see that aq_resize() function returns null if the not English language is selected.
   
   quora/aq_resizer.php
    -  This reply was modified 8 years, 3 months ago by [starson02](https://wordpress.org/support/users/starson02/).
    -  This reply was modified 8 years, 3 months ago by [starson02](https://wordpress.org/support/users/starson02/).
    -  This reply was modified 8 years, 3 months ago by [starson02](https://wordpress.org/support/users/starson02/).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WPGlobus] Featured image is not shown](https://wordpress.org/support/topic/featured-image-is-not-shown/)
 *  Thread Starter [starson02](https://wordpress.org/support/users/starson02/)
 * (@starson02)
 * [8 years, 3 months ago](https://wordpress.org/support/topic/featured-image-is-not-shown/#post-9961821)
 * The image should be shown on the category page (content.php) not content-single.
   php.
 * Please compare pages in English and other language:
    [http://test.trophyclub.ca/category/related/](http://test.trophyclub.ca/category/related/)
   [http://test.trophyclub.ca/de/category/related/](http://test.trophyclub.ca/de/category/related/)
 *     ```
       		<div class="post-img">
       				<?php
       					$thumb = get_post_thumbnail_id();
       					$img_url = wp_get_attachment_url( $thumb,'full' ); //get full URL to image (use "large" or "medium" if the images too big)
       					$image = aq_resize( $img_url, 300, 300, true ); //resize & crop the image
       				?>
   
       				<?php if($image) : ?>
       					<a href="<?php the_permalink(); ?>"><img src="<?php echo $image ?>"/></a>
       				<?php endif; ?>
       		</div>
       ```
   
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WPGlobus] Featured image is not shown](https://wordpress.org/support/topic/featured-image-is-not-shown/)
 *  Thread Starter [starson02](https://wordpress.org/support/users/starson02/)
 * (@starson02)
 * [8 years, 3 months ago](https://wordpress.org/support/topic/featured-image-is-not-shown/#post-9961767)
 * Yes

Viewing 5 replies - 1 through 5 (of 5 total)