Problem mit Wordpress Template
lima-city → Forum → Programmiersprachen → PHP, MySQL & .htaccess
anfangen
code
ding
editor
eintrag
handgriff
hilfe
index
kommentar
limit
not
ordern
paar
post
problem
rest
richten
single
type
weiteren fehlern
-
Diskutiere mit und stelle Fragen: Jetzt kostenlos anmelden!
lima-city: Gratis werbefreier Webspace für deine eigene Homepage
-
Boah, Wordpress geschrieben in C++? Cool! Hast du nen Link, das will ich auch haben. Dann ist das Ding endlich mal nicht so lahm.
-
[code] <? php get_header ();?>
<? php get_sidebar ();?>
<div id="left">
<? php if (is_home ()) (?>
<div class="domtab">
<div id="tab">
<div id="tabhead">
<ul class="domtabs">
<li> <a href="#t1"> Featured Post </ a> </ li>
<li> <a href="#t2"> Recent Posts </ a> </ li>
<li> <a href="#t3"> Monatsarchiv </ a> </ li>
</ Ul>
</ Div>
<div id="tabcontent">
<? php
$ The_query = new WP_Query ( 'showposts = 1 & orderby post_date = & order = desc & cat ='. Get_option ( 'featured_post_cat_id'));
while ($ the_query-> have_posts ()): $ the_query-> the_post ();
$ Do_not_duplicate = $ post-> ID;
?>
<? php if (get_post_meta ($ post-> ID, 'featured_image', true)) (?>
<a href = "<? php the_permalink ();?>" rel =" bookmark "title =" Permanent Link to <? php the_title (); ?>">< img class = "leftimg" src = "<? php bloginfo ( 'stylesheet_directory');?> / vorgestellten / <? php echo get_post_meta ($ post-> ID, "featured_image", $ single = true);?> "alt =" <? php the_title ();?> " /> </ a>
<? php)?>
<h3> <a name = "t1" id = "t1" href = "<? php the_permalink ()?>" rel =" bookmark "title =" Permanent Link to <? php the_title (); ?>">< ? php the_title ();?> </ a> <span class="postinfo"> Beitrag von <? php the_author ()?> auf <? php the_time ( 'F jS, Y')?> </ span> </ h3>
<? php the_content ( "Lesen Sie den Rest dieses Eintrags »');?>
<? php endwhile;?>
</ Div>
<div id="tabcontent">
<h2> <a name="t2" id="t2"> Recent Posts </ a> </ h2>
<ul>
<? php wp_get_archives ( 'type = postbypost & limit = 10');?>
</ Ul>
</ Div>
<div id="tabcontent">
<h2> <a name="t3" id="t3"> Monatsarchiv </ a> </ h2>
<ul>
<? php wp_get_archives ( 'type = monthly & limit = 10');?>
</ Ul>
</ Div>
</ Div>
</ Div>
<? php)?>
<? php
if (have_posts ()): while (have_posts ()): the_post ();
if (is_home ()) (if ($ post-> ID == $ do_not_duplicate) (continue; update_post_caches ($ posts);))
?>
<div class="post">
<div class="posttop"> </ div>
<div class="postitem">
<h2> <a href = "<? php the_permalink ()?>" rel =" bookmark "title =" Permanent Link to <? php the_title (); ?>"><? php the_title ();?> </ a> <span class="postinfo"> Beitrag von <? php the_author ()?> auf <? php the_time ( 'F jS, Y')?> </ span> </ h2>
<? php the_content ( "Lesen Sie den Rest dieses Eintrags »');?>
</ Div>
<div class="postbottom"> Abgelegt unter: <? php bloginfo ('')?> | <? php comments_popup_link ( 'kein Kommentar', '1 Comment ','% Kommentare');?> </ div>
</ Div>
<? php endwhile;?>
<div id="pagination">
<span class="pre"> <? php next_posts_link ( ' «Older Entries')?> </ span> <span class="next"> <? php previous_posts_link ( 'Neuere Einträge »')?> </ span>
<div class="clear2"> </ div>
</ Div>
<? php else:?>
<h2 class="title"> Not Found </ h2>
<p> Sorry, aber Sie sind auf der Suche nach etwas, das nicht hier ist. </ P>
<? php endif;?>
</ Div>
<? php get_footer ();?>[/ code] -
Ist das genau der code der in der .php steht?
Weil wenn es so sein sollte mach das {code] vorne und das [/code] hinten, komplett weg, das es dann so aussieht, weil an sich der code geht
<? php get_header ();?> <? php get_sidebar ();?>....<? php endif;?> </ Div> <? php get_footer ();?>
Beitrag zuletzt geändert: 11.12.2009 2:06:54 von bigbausx1 -
Das ist wohl eher ein verunglückter BBcode.
Der funktioniert aber, genau wie das Template, wegen überflüssiger Leerzeichen nicht.
<? php ^ Da darf kein Leerzeichen stehen.
Sonst betrachtet der php-Parser das <? als shorttag, mit dem nach dem Leerzeichen folgenden php kann er nix anfangen und findet einen unexpected T_STRING.
Wenn der Code aber wirklich so, wie oben gepostet geschrieben ist, hagelt es noch Massen von weiteren Fehlern aufgrund überflüssiger Leerzeichen.
FF
Beitrag zuletzt geändert: 11.12.2009 2:24:43 von fatfreddy -
Diskutiere mit und stelle Fragen: Jetzt kostenlos anmelden!
lima-city: Gratis werbefreier Webspace für deine eigene Homepage