Hallo Leute,
ich habe mal eine Frage:
Wie geht der Textlink auf meiner Homepage: http://dashausanubis-fanpage.tk rechts unter Anmelden diese Textlink´s weg?:
- Artikel-Feed (RSS)
- Kommentare als RSS
- WordPress.org
Ich hoffe, ihr könnt mir Helfen!
MfG
Um schreiben oder kommentieren zu können, benötigen Sie ein Benutzerkonto.
Sie haben schon ein Benutzerkonto? Melden Sie sich hier an.
Jetzt anmeldenHier können Sie ein neues Benutzerkonto erstellen.
Neues Benutzerkonto erstellenHallo Leute,
ich habe mal eine Frage:
Wie geht der Textlink auf meiner Homepage: http://dashausanubis-fanpage.tk rechts unter Anmelden diese Textlink´s weg?:
Ich hoffe, ihr könnt mir Helfen!
MfG
Hallo!
Wenn du gerade an deiner Website arbeitest oder dein aktuelles Hosting überdenkst: Wir betreiben mit NetzLiving eine Hosting-Plattform, die speziell auf Performance, Sicherheit und einfache Verwaltung ausgelegt ist.
deine hoffnung lebt ;-)
alles kriegt man in einem template weg, es lässt sich alles anpassen ;-)
schau mal in deine sidebar.php ganz nach unten, da findest du die ausgabe. das template gibt auch widget aus, was du über design/widgets ändern kannst ;-)
lg
bob
Hi,
Also der Punkt Anmelden ist Widget, das habe ich einfach dort reingezogen!
Geht das trozdem weg?
In sidebar.php steht nix davon mit RSS und so ?!
widget wieder weg, in der sidebar per hand einpflegen ;-)
den core solltest nicht angreifen...
schau mal ins standard template, da findest in der sidebar.php den code.
lg
bob
Hi,
ich habs nicht so mit PHP
Wo muss ich den Code:
<li id="meta"><?php _e('Meta:'); ?>
<ul>
<?php wp_register(); ?>
<li><?php wp_loginout(); ?></li>
<li><a href="<?php bloginfo('rss2_url'); ?>" title="<?php _e('Syndicate this site using RSS'); ?>"><?php _e('<abbr title="Really Simple Syndication">RSS</abbr>'); ?></a></li>
<li><a href="<?php bloginfo('comments_rss2_url'); ?>" title="<?php _e('The latest comments to all posts in RSS'); ?>"><?php _e('Comments <abbr title="Really Simple Syndication">RSS</abbr>'); ?></a></li>
<li><a href="http://validator.w3.org/check/referer" title="<?php _e('This page validates as XHTML 1.0 Transitional'); ?>"><?php _e('Valid <abbr title="eXtensible HyperText Markup Language">XHTML</abbr>'); ?></a></li>
<li><a href="http://gmpg.org/xfn/"><abbr title="XHTML Friends Network">XFN</abbr></a></li>
<li><a href="http://wordpress.org/" title="<?php _e('Powered by WordPress, state-of-the-art semantic personal publishing platform.'); ?>"><abbr title="WordPress">WP</abbr></a></li>
<?php wp_meta(); ?>
</ul>
</li>
<?php endif; ?>
Hier einfügen?:
<div id="sidebar">
<ul>
<?php /* Widgetized sidebar, if you have the plugin installed. */
if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar() ) : ?>
<!-- Author information is disabled per default. Uncomment and fill in your details if you want to use it.
<li><h2>Author</h2>
<p>A little something about you, the author. Nothing lengthy, just an overview.</p>
</li>
-->
<?php if ( is_404() || is_category() || is_day() || is_month() ||
is_year() || is_search() || is_paged() ) {
?> <?php }?>
<li><h2>Archives</h2>
<ul>
<?php wp_get_archives('type=monthly'); ?>
</ul>
</li>
<?php wp_list_categories('show_count=1&title_li=<h2>Categories</h2>'); ?>
<?php /* If this is the frontpage */ if ( is_home() || is_page() ) { ?>
<?php wp_list_bookmarks(); ?>
<li><h2>Meta</h2>
<ul>
<?php wp_register(); ?>
<li><?php wp_loginout(); ?></li>
<li><a href="http://validator.w3.org/check/referer" title="This page validates as XHTML 1.0 Transitional">Valid <abbr title="eXtensible HyperText Markup Language">XHTML</abbr></a></li>
<li><a href="http://gmpg.org/xfn/"><abbr title="XHTML Friends Network">XFN</abbr></a></li>
<li><a href="http://wordpress.org/" title="Powered by WordPress, state-of-the-art semantic personal publishing platform.">WordPress</a></li>
<?php wp_meta(); ?>
</ul>
</li>
<?php } ?>
<?php endif; ?>
</ul>
</div>
Alles anzeigen
warum nimmst du dir nicht etwas zeit mit dem lesen der sidebar.php?
ich sagte schon ganz unten...
da siehst du eindeutig diese ausgabe:
<li><h2>Meta</h2>
<ul>
<?php wp_register(); ?>
<li><?php wp_loginout(); ?></li>
<li><a href="http://validator.w3.org/check/referer" title="This page validates as XHTML 1.0 Transitional">Valid <abbr title="eXtensible HyperText Markup Language">XHTML</abbr></a></li>
<li><a href="http://gmpg.org/xfn/"><abbr title="XHTML Friends Network">XFN</abbr></a></li>
<li><a href="http://wordpress.org/" title="Powered by WordPress, state-of-the-art semantic personal publishing platform.">WordPress</a></li>
<?php wp_meta(); ?>
</ul>
</li>
so, was glaubst, was jetzt löschen solltest?
genau, diese zeilen:
<li><a href="http://validator.w3.org/check/referer" title="This page validates as XHTML 1.0 Transitional">Valid <abbr title="eXtensible HyperText Markup Language">XHTML</abbr></a></li>
<li><a href="http://gmpg.org/xfn/"><abbr title="XHTML Friends Network">XFN</abbr></a></li>
<li><a href="http://wordpress.org/" title="Powered by WordPress, state-of-the-art semantic personal publishing platform.">WordPress</a></li>
<?php wp_meta(); ?>
bevor du nochmals fragst ;-)
bzw, fügst du diese zeilen an gleicher stelle in deiner sidebar.php ein:
<ul>
<?php wp_register(); ?>
<li><?php wp_loginout(); ?></li>
</ul>
Alles anzeigen
wp_register nat. nur, wenn leute sich auch anmelden dürfen...
wenn nicht, schalte das auch in deinen einstellungen ab (unter einstellungen in deinem wpbackoffice), da der link ja trotzdem immer erreichbar ist und von spammern gerne missbracht wird.
lg
rob
ps: auch zum studieren, wenn du dein template weiter anpassen willst:
http://codex.wordpress.org/Template_Tags
in diesem fall ist die sektion login/logout tags für dich relevant.
Hi,
SO das ist jetzt meine sidebar.php:
<div id="sidebar">
<ul>
<?php /* Widgetized sidebar, if you have the plugin installed. */
if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar() ) : ?>
<!-- Author information is disabled per default. Uncomment and fill in your details if you want to use it.
<li><h2>Author</h2>
<p>A little something about you, the author. Nothing lengthy, just an overview.</p>
</li>
-->
<?php if ( is_404() || is_category() || is_day() || is_month() ||
is_year() || is_search() || is_paged() ) {
?> <?php }?>
<li><h2>Archives</h2>
<ul>
<?php wp_get_archives('type=monthly'); ?>
</ul>
</li>
<?php wp_list_categories('show_count=1&title_li=<h2>Categories</h2>'); ?>
<?php /* If this is the frontpage */ if ( is_home() || is_page() ) { ?>
<?php wp_list_bookmarks(); ?>
<li><h2>Meta</h2>
<ul>
<?php wp_register(); ?>
<li><?php wp_loginout(); ?></li>
<ul>
<?php wp_register(); ?>
<li><?php wp_loginout(); ?></li>
</ul>
</ul>
</li>
<?php } ?>
<?php endif; ?>
</ul>
</div>
Alles anzeigen
Leider geht es immer noch nicht
Sie haben noch kein Benutzerkonto auf unserer Seite? Registrieren Sie sich kostenlos und nehmen Sie an unserer Community teil!