krzysiek789
Forum Replies Created
-
Forum: Plugins
In reply to: Do you know how this plugin is called?i checked but nothing found ;/
Forum: Fixing WordPress
In reply to: “Home” Link in sidebarExactly its what I wanted.
Thank you very much for your help.
Forum: Fixing WordPress
In reply to: “Home” Link in sidebarYou are right, now it looks like i always wanted, but there is another problem, Pages are mixed, and they arent keep their numbers (set in admin panel)
Forum: Fixing WordPress
In reply to: “Home” Link in sidebarMichaelH I have upgraded it, and now it looks:
https://www.severity.pl/screen2.jpg
So its correctly, but “Strony” mean “Pages” disappeared, wchich
https://www.severity.pl/screen.jpg here exsits.
Is there any possibilites to Show “Strony” too, or not?
Forum: Fixing WordPress
In reply to: “Home” Link in sidebarOf course “Strona Glowna” means “home” ??
Forum: Fixing WordPress
In reply to: “Home” Link in sidebarI have done it, and i Have
In sidebar firstly:
“HOME”
Then Strony (Pages)
my page 1
my page 2
my page 3
etc.I did: ?php wp_page_menu(‘show_home=1&include=3300&title_li <h2>Strony</h2>’); ?>
?php wp_list_pages(‘title_li=<h2>Strony</h2>’ );I added php wp_list_pages(‘title_li=<h2>Strony</h2>’ );
because without it, Strony (my Pages) arent shown in sidebar.Forum: Fixing WordPress
In reply to: “Home” Link in sidebarokay Michale, it works… but now little problem is that It can be only above or below all “Pages” right? It there any possibility to make “HOME” fiest position under “Pages”?
Forum: Fixing WordPress
In reply to: “Home” Link in sidebarMichael I have used both link to my sidebar
https://www.severity.pl/sidebar.txtcut
<?php wp_list_pages(‘title_li=<h2>Strony</h2>’ ); ?>
“>home
<?php wp_page_menu(‘show_home=1&include=3300’); ?>”homeOf course still nothing happened (already installed widget plugin)
Forum: Fixing WordPress
In reply to: “Home” Link in sidebarWhere should I paste it? (I have tried it 100 times, maybe PageNavi plgin could be problem?)
Its my sidebar.php
<div id=”sidebar”>
-
<?php /* Widgetized sidebar, if you have the plugin installed. */
- <?php include (TEMPLATEPATH . ‘/searchform.php’); ?>
- <h2>Author</h2>
<p>A little something about you, the author. Nothing lengthy, just an overview.</p> -
<?php /* If this is a 404 page */ if (is_404()) { ?>
<?php /* If this is a category archive */ } elseif (is_category()) { ?>
<p>You are currently browsing the archives for the <?php single_cat_title(”); ?> category.</p><?php /* If this is a yearly archive */ } elseif (is_day()) { ?>
<p>You are currently browsing the /”><?php echo bloginfo(‘name’); ?> blog archives
for the day <?php the_time(‘l, F jS, Y’); ?>.</p><?php /* If this is a monthly archive */ } elseif (is_month()) { ?>
<p>You are currently browsing the /”><?php echo bloginfo(‘name’); ?> blog archives
for <?php the_time(‘F, Y’); ?>.</p><?php /* If this is a yearly archive */ } elseif (is_year()) { ?>
<p>You are currently browsing the /”><?php echo bloginfo(‘name’); ?> blog archives
for the year <?php the_time(‘Y’); ?>.</p><?php /* If this is a monthly archive */ } elseif (is_search()) { ?>
<p>You have searched the /”><?php echo bloginfo(‘name’); ?> blog archives
for ‘<?php the_search_query(); ?>’. If you are unable to find anything in these search results, you can try one of these links.</p><?php /* If this is a monthly archive */ } elseif (isset($_GET[‘paged’]) && !empty($_GET[‘paged’])) { ?>
<p>You are currently browsing the /”><?php echo bloginfo(‘name’); ?> blog archives.</p><?php } ?>
- <h2>Archives</h2>
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.
–>
<?php if ( is_404() || is_category() || is_day() || is_month() ||
is_year() || is_search() || is_paged() ) {
?><?php }?>
<?php wp_list_pages(‘title_li=<h2>Pages</h2>’ ); ?>
-
<?php wp_get_archives(‘type=monthly’); ?>
<?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(); ?>- <h2>Meta</h2>
-
<?php wp_register(); ?>
- <?php wp_loginout(); ?>
- Valid <abbr title=”eXtensible HyperText Markup Language”>XHTML</abbr>
- <abbr title=”XHTML Friends Network”>XFN</abbr>
- WordPress
<?php wp_meta(); ?>
<?php } ?>
<?php endif; ?>
</div>
Forum: Fixing WordPress
In reply to: “Home” Link in sidebarI cant believe that no one knows how do it ;/
Forum: Fixing WordPress
In reply to: “Home” Link in sidebara href=”<?php echo get_option(‘home’); ?>”>home
mean this
Forum: Fixing WordPress
In reply to: “Home” Link in sidebarAnd i tried do it in another way,
I tried “>Home put in /home/wordpress/wp-content/themes/default/sidebar.php and it didnt work too ?? maybe i put it in wrong place?Forum: Fixing WordPress
In reply to: “Home” Link in sidebarYes I`m using wordpress 2.7.
I have added “Home” in sidebar, and put in it show_home=1, but it doesnt work ;/
Could you give me expamle?