Irgendwas mach ich da wohl falsch...
Also, hier die gesamte Single.php
<?php get_header(); ?>
<div id="content">
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<div class="post" id="post-<?php the_ID(); ?>">
<h2>
<?php the_title(); ?>
</h2>
<small class="commentmetadata">
<!--- <?php _e('Von','wyntonmagazine');?>
<?php the_author_posts_link('namefl'); ?>
|--->
<?php the_time(__ ('l, j. F Y', 'wyntonmagazine'));?>
|
<?php _e('Kategorie:','wyntonmagazine');?>
<?php the_category(', ');?>
<!--- |
<?php comments_popup_link(__ ('No Comments »', 'wyntonmagazine'), __ ('1 Comment »', 'wyntonmagazine'), __ngettext ('% comment', '% comments', get_comments_number (),'wyntonmagazine')); ?>
<?php edit_post_link('Edit', ' | ', ' | '); ?> --->
</small>
<div class="entry">
<?php the_content("<p class=\"serif\">" . __('Read the rest of this page', 'wyntonmagazine') ." »</p>"); ?>
<?php wp_link_pages("<p><strong>" . __('Pages', 'wyntonmagazine') . ":</strong>", '</p>', __('number','wyntonmagazine')); ?>
</div>
<div class="quelle">
Quelle: <?php $post_id = get_the_ID();
$quellen_angabe = get_post_meta($post_id, 'quelle', true);
echo $quellen_angabe; ?>
</div>
<?php if ( function_exists('the_tags') ) {
the_tags('<div id="tags"><strong>Tags:</strong> ', ', ', '</div>'); } ?>
</div><br>
<?php if(function_exists('wp_print')) { print_link(); } ?>
<?php comments_template(); ?>
<?php endwhile; else: ?>
<p><?php __('Sorry, no posts matched your criteria.','wyntonmagazine');?></p>
<?php endif; ?>
</div>
<?php get_sidebar(); ?>
<div class="clear"></div>
<?php get_footer(); ?>
Alles anzeigen
Dann macht es diese Fehlermeldung:
Parse error: parse error, unexpected T_VARIABLE in /PRiNZ_WyntonMagazine_latest/wyntonmagazine/single.php on line 27
Danke für Deine Hilfe!