swooper
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: the_content problemDoes nobody know anything about this?
Forum: Fixing WordPress
In reply to: the_content problemMy intention was to emphasize the “the_content” part that anyone can take a quick scan..the php should be right the Read is what is going to be displayed if use the more tag while posting a new entry..To sum up strong or the php echo, sadly, are not the problem..
Forum: Fixing WordPress
In reply to: writing a poststrange, now even
´s work, thxForum: Fixing WordPress
In reply to: ie5 seems to screw it allin now works fine in all browser, i know : ) thx m8´s
Forum: Fixing WordPress
In reply to: Counting Commentsthx @ll especially techwench : )
Forum: Fixing WordPress
In reply to: Displaying the 5 latest posts by:[code][code] <?php
$posts = get_posts('numberposts=5');
foreach ($posts as $post) : setup_postdata($post);
?>
<h4>" rel="bookmark"><?php the_title(); ?></h4>
<div class="post"><?php the_content(); ?></div>
<p class="custom"><?php the_time('d. F Y ') ?> abgelegt in <?php the_category(', ') ?> | <?php edit_post_link('Edit','',''); ?>
<?php
endforeach;
?>[/code]works fine
[code][code] <?php
$posts = get_posts('numberposts=5');
foreach ($posts as $post) : setup_postdata($post);
?>
<h4>" rel="bookmark"><?php the_title(); ?></h4>
<div class="post"><?php the_content('More »'); ?></div>
<p class="custom"><?php the_time('d. F Y ') ?> abgelegt in <?php the_category(', ') ?> | <?php edit_post_link('Edit','',''); ?>
<?php
endforeach;
?>[/code]as I need it with the 'More'-option doesn´t..
Forum: Fixing WordPress
In reply to: Displaying the 5 latest posts by:@ kafkaesqui
[code] <?php
$posts = get_posts('numberposts=5');
foreach ($posts as $post) : setup_postdata($post);
?>
<h4>" rel="bookmark"><?php the_title(); ?></h4>
<div class="post"><?php the_content('More »'); ?></div>
<p class="custom"><?php the_time('d. F Y ') ?> abgelegt in <?php the_category(', ') ?> | <?php edit_post_link('Edit','',''); ?>
<?php
endforeach;
?>[/code]doens´t work 🙁
@ alphaoide
I tried your suggestion, but didn´t get it to work, could you post a working example?
Forum: Fixing WordPress
In reply to: Displaying the 5 latest posts by:yes, you´re right now I can use the content but only the whole content something like
[code]<?php the_content('Go on »'); ?>[/code]
doesn´t work at all :/
Forum: Fixing WordPress
In reply to: Displaying the 5 latest posts by:doesn´t quiet do, what was supposed to..
I just need a independent site where the five latest entries are displayed like <?php the_content(‘Go on »’); ?>
possible at all?