janestar
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Using a layout made in paint shop pro…Podz, I have no idea what you’re saying…but I’ll email you to get the link, lol. I’d rather use frames though…simply because then i just have to make a new html page with the code that I know for each new page…
You see…I just want all of the posts for the current month to automatically show up in the frame when the website is loaded. The archive link will be on the side under/above the “About me” link. Does that make sense? My old blog just automatically showed the posts…all of them….but of course, it was blogger…and they did all of the coding for you….lol.Forum: Fixing WordPress
In reply to: Using a layout made in paint shop pro…Sorry, it was stupid of me not to post my url.
I always work with iframes…I’ve just never combined php with iframes…lol.
Sorry for the long wait before a reply…I went a vacation for a couple of days.
Here’s the link: https://www.meganlovesdance.com/blogg/
My index page just has the iframe….so should I post it? I’ll post the main page, the page that loads in the iframe…but if you want me to post the index page as well..I can.
<?php
/* Don't remove these lines. */
$blog = 1;
require('wp-blog-header.php');
<?php the_date('','<h2>','</h2>'); ?>
<div class="post">
<h3 class="storytitle" id="post-<?php the_ID(); ?>">" rel="bookmark" title="Permanent Link: <?php the_title(); ?>"><?php the_title(); ?></h3>
<div class="meta">Filed under: <?php the_category() ?> — <?php the_author() ?> @ <?php the_time() ?> <?php edit_post_link(); ?></div>
<div class="storycontent">
<?php the_content(); ?>
</div>
<div class="feedback">
<?php link_pages('
Pages: ', '
', 'number'); ?>
<?php comments_popup_link('Comments (0)', 'Comments (1)', 'Comments (%)'); ?>
</div>
<?php }?>
Thankyou so much for helping me….it’s greatly appreciated.Forum: Fixing WordPress
In reply to: Using a layout made in paint shop pro…Hey, I’ve gotten the calendar to work in the right table….but my main.php page….the one that is in the iframe…it won’t show up….I just keep getting error messages, no matter what I change. The most recent error message is a parse error message….but I don’t see a parse error…of course, then again, I don’t know php for beans, lol.