simplymybusiness
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: change the teaser […]Thanks Thomas. Is the only place that I can find the formatting.php in wp-includes in my ftp: folder? I have tried to open in notepad, but it does not give me that option.
Forum: Fixing WordPress
In reply to: change the teaser […]I wanting to change this same issue in the new theme I have downloaded. How are you able to see the formatting php in wp-includes? I tried to open it, but none of my programs can read it. Is there a specific software needed for opening that file from my ftp? Unfortunately, in my ftp is the only place I can actually see that file.
I hope you do not mind me “horning in” on your post. Thanks.Forum: Themes and Templates
In reply to: photos not showing in postWell, for a little while the photo showed in the post…until I made another post. Not only did the first post collapse, but then the newest post shows the narrative twice.
I made the changes below. Gosh if anyone could possibly assist, I would be so grateful!
<div class=”post” id=”post-<?php the_ID(); ?>”><p class=”meta”>
<h1 class=”title”>” rel=”bookmark” title=”Permanent Link to <?php the_title(); ?>”><?php the_title(); ?></h1>
<p class=”byline”><small><?php the_time(‘F jS, Y’) ?> by <?php the_author() ?> <?php edit_post_link(‘Edit’, ”, ‘ | ‘); ?></small></p>
<div class=”entry”>
<?php the_excerpt(); ?>
</div>
<p class=”meta”><?php
// Display all content, including text below more
$more = 1;
the_content();
?>” class=”more”>Read More <?php comments_popup_link(‘No Comments »’, ‘1 Comment »’, ‘% Comments »’, ‘comments’); ?><p class=”meta”>
</div><?php while (have_posts()) : the_post(); ?>
Forum: Themes and Templates
In reply to: photos not showing in postThanks Evita! I found this in the index.php
<?php the_excerpt(); ?>
</div>
<p class=”meta”>” class=”more”>Read More <?php comments_popup_link(‘No Comments »’, ‘1 Comment »’, ‘% Comments »’, ‘comments’); ?></p>
</div><?php while (have_posts()) : the_post(); ?>
<div class=”post” id=”post-<?php the_ID(); ?>”>
<h2 class=”title”>” rel=”bookmark” title=”Permanent Link to <?php the_title(); ?>”><?php the_title(); ?></h2>
<p class=”byline”><small><?php the_time(‘F jS, Y’) ?> by <?php the_author() ?> <?php edit_post_link(‘Edit’, ”, ‘ | ‘); ?></small></p>
<div class=”entry”>
<?php the_excerpt(); ?>
</div>However, I am not certain what to do next.
thanks again