yanbu
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: posting image and title of last post outside WP. . . thanks
Forum: Fixing WordPress
In reply to: posting image and title of last post outside WPok here’s an update:
https://www.10eastern.com/draw/index2.php
i got the content to display (the three posts with larger images are being called with:
<?php
$posts = get_posts(‘numberposts=3’);
foreach($posts as $post) :
setup_postdata($post);
?>
” id=”post-<?php the_ID(); ?>”><?php the_title(); ?>
<?php the_content(); ?>
<?php endforeach; ?>i tried sticking them into a fixed-width table of 200 pixels but it breaks out of it to it’s larger size. i just want to post a summary of the last three posts, on another page and squish em into a small table.
how can i auto-limit the image dimensions to a fixed-width? OUTSIDE of wordpress? eh?
Forum: Fixing WordPress
In reply to: posting image and title of last post outside WPok to summarize again in case i wasn’t clear:
check this link:
https://www.10eastern.com/drawi’m trying to display the last post in my weblog on a different php page, but i’d like to display the image contained in the post and the title above it. i’m currently just using: <?php wp_get_archives(‘type=postbypost&limit=5’); ?> to display the last posts.
i’m hoping to be able to output them to a fixed width table, and maybe use css to control the formatting. but i’m not sure how to go about this. any help would be appreciated (check the link, i created an example of what i’m hoping to do)
thanks
Forum: Fixing WordPress
In reply to: posting image and title of last post outside WPanyone? hoping this doesn’t get buried
Forum: Fixing WordPress
In reply to: How to show latest post on my home page (outside of wp)?sorry, I guess I didn’t make that clear (i edited the post to be more clear, my fault) – I mean to say, I have a website that isn’t weblog based and i’d like to be able to show the latest post on the main page of my site.
Forum: Fixing WordPress
In reply to: How to show latest post on my home page (outside of wp)?It looks like that is your weblog itself though, right? I’m looking to feature the last post on a separate PHP page outside of wordpress.
Forum: Themes and Templates
In reply to: Text wrap problems, images overlapping post belowI couldn’t find anything on ‘clearfix’ on the page link there, is it maybe named something else?