December 2017
[o] [o] [o] [o] [o] <- post thumbnails
November 2017
[o] [o] [o] [o] [o] <- post thumbnails
How can I make this happen? I have the css pretty much figured out, but the wordpress/php stupefies me.
]]>1) I have my archives page working pretty well, but I think I messed up my loop. When I click on a category, my page displays the category name but then it only displays one post under that category instead of all posts under that category. So that’s issue one.
2) Ultimately what I what to have happen is that all of the posts that are under a category only displays the post_thumbnail() and no title or content. Just the featured image only. I did manage to have the featured image display with a link to the post itself, but again, and I think it’s related to the #1 issue, only the one post thumb is showing.
If anyone wants to take a stab at this for me, I’d be willing to post any code that you need. I’m sure I messed it up somewhere.
]]>cURL error 28: Operation timed out after 5000 milliseconds with 2035208 out of 6915358 bytes received
Thank you!
]]>I am using rsCSVi to transfer a large amount of data, and it is working brilliantly!… with one exception: I am unable to import any thumbnails. I have tried different formats for the uri of the image, including relative and full paths, but the importer isn’t finding the images. I have read a lot of forums, but can’t seem to find a solution to this issue. Thank you in advance.
]]>featured_image is purely the url to the image.
post_thumbnail contains the url, mime_type, id, guid, height, width – but all of the featured image.
If my featured image has dimensions 1300×1200, this isn’t a thumbnail, and post_thumbnail shouldn’t refer to that image file, but it does.
I would expect the post_thumbnail field to be the URL of the 150×150 thumbnail.
]]>image.php
? This page would have a larger version with a description underneath it. Right now, the post_thumbnail is linked to the post via the_permalink()
.
I dunno, does this make any sense?
]]>post-thumb
class in my style.css to overwrite it a bit, but the quality of the image is greatly diminished because it’s being altered somewhere else first….I just can’t seem to find WHERE or HOW.
]]>I have
add_image_size ( ‘Small Thumbnail’, 60, 60, false );
and I want to call it using the following:
if ( $the_query->have_posts() ) {
echo '<ul class="recipes-list">';
while ( $the_query->have_posts() ) {
$the_query->the_post();
echo '<li class="clearfix">';
$url = wp_get_attachment_url( get_post_thumbnail_id($post->ID) );
if($url == "")
{
$url = site_url().'/wp-content/uploads/2015/09/noimage.png';
}
echo '<a href="'.get_permalink($post->ID).'"><img src="'.$url.'" height="60" width="60"/></a>';
echo '<article>';
echo '<h3><a href="'.get_permalink($post->ID).'">'.get_the_title().'</a></h3>';
?>
I would really appreciate any help.
]]>My Media Settings are all accurate to what I want.
Thumbnail 150×150 Yes to crop to exact
Medium 300×300
Large 1024×1024
Inside the TwentyFifteen Functions.php I see the lines of code
add_theme_support( ‘post-thumbnails’ );
set_post_thumbnail_size( 825, 510, true );
Which is an acceptable size.. but not what I’m getting.
The CSS is not editing the photo. As soon as I put the image into the Featured Image area. It is cropped.
Some plugins I have running are: Easy Smooth Scroll Links, & Responsive Lightbox.
Hopefully someone out there knows how to find the nasty little code doing this. Thanks!
]]>