kimmi_baby
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: How to link the feature imageHi,
I’ve already added the feature image and the link this way but the thumbnail isn’t a link when I click on it. I’m thinking it’s something I need to add to<?php echo get_the_post_thumbnail($page->ID, 'thumbnail'); ?>
So far nothing happens.Forum: Fixing WordPress
In reply to: Change order of posts when displaying 3 latest postsI just tried something and now it appears as if it can’t find the stylesheet anymore. This seems to be really more difficult than I was wanting.
Forum: Fixing WordPress
In reply to: Adding a thumbnail to a blog post repeats and has an arrowI managed to fix the repeating issue but I can’t seem to get rid of the arrow. When I check the code in firefox it appears as ” > “
I tried removed the div it appears in but then it moves to the other div. Is there an error in the code causing this?Forum: Fixing WordPress
In reply to: Feature Image won't resizeThe only post-thumbnails is the code I’ve added in there which I showed earlier… It’s so frustrating ?? Thank you for your help so far
Forum: Fixing WordPress
In reply to: Feature Image won't resizeI’ve edited the twentyten theme
Forum: Fixing WordPress
In reply to: Feature Image won't resizeNo I’m using completely new images each time….
Forum: Fixing WordPress
In reply to: Feature Image won't resizeThat didn’t work either… ?? It’s supposed to make it automatically resize isn’t it? I can have normal images resize but just not feature images..
Forum: Fixing WordPress
In reply to: Is there a way to set different excerpt lengths?I am able to change the length but I can’t see anything there about changing the length multiple times for multiple items.
Forum: Fixing WordPress
In reply to: How to display the thumbnail of a postgot it to work! thank you
Forum: Fixing WordPress
In reply to: How to display the thumbnail of a postI’m noticing that it isn’t reading my paragraph tags when it brings in the page content.
Also this is the code now,
<?php $post_id = 181; $my_post = get_post($post_id); echo $my_post->post_title; echo $my_post->post_content; echo '<div class="leftimage"></div>'. get_the_post_thumbnail($my_post->ID); ?>
It’s not working because I haven’t been able to wrap the div around the content… Is there another way?
I need it to work along the lines of
echo <div class=”leftimage”>get_the_post_thumbnail($my_post->ID);</div>Forum: Fixing WordPress
In reply to: How to display the thumbnail of a postgreat! thank you ??
I now have this
<?php $post_id = 181; $my_post = get_post($post_id); echo "$my_post->post_title"; echo "$my_post->post_content"; echo get_the_post_thumbnail($my_post->ID); ?>
What if i want to place the content in a div and the image in a div? I seem to get an error if I put a div around the code
Forum: Fixing WordPress
In reply to: Custom Block with one column for image and one column for textWhat I want to do is have a section in wordpress that is called Our Team and in there it will have a section to add a feature image and also the bio about the person. Then each team member will be displayed under that section and displayed on the one page. So it will be near the Tools and Appearance tabs in wordpress. I am currently creating my own theme.
Forum: Fixing WordPress
In reply to: Custom Block with one column for image and one column for textCan anyone help me with this? Please
Forum: Fixing WordPress
In reply to: What is wrong with this code? Third page sometimes doesn't appear