• rocky2889

    (@rocky2889)


    How can I can change the archive page to have different sidebar?
    On the “archive.php” I see there is a <?php get_sidebar () ; ?>
    Can I just change to <?php get_sidebar1 () ;?> and create a file with “sidebar1.php”
    anybody please help. thanks

Viewing 6 replies - 1 through 6 (of 6 total)
  • Do a php include:
    <?php include('link'); ?>

    Where “link” is the sidebar template. (I don’t think the php get will work…but I know the include will.)

    Thread Starter rocky2889

    (@rocky2889)

    I changed to <?php include (sidebar1.php); ?>

    I get all these errors

    Warning: main(sidebar1php): failed to open stream: No such file or directory in /home/rocky/public_html/wp-content/themes/rocky/archive.php on line 68

    Warning: main(sidebar1php): failed to open stream: No such file or directory in /home/rocky/public_html/wp-content/themes/rocky/archive.php on line 68

    jinsan

    (@jinsan)

    try:

    <?php include (templatepath . '/sidebar1.php'); ?>

    It’s because you left out the quote marks – (‘sidebar1.php’) – and it has to be in the same folder as your theme.

    Thread Starter rocky2889

    (@rocky2889)

    I still get the error with the <?php include (templatepath . ‘/sidebar1.php’); ?>

    Warning: main(templatepath/sidebar1.php): failed to open stream: No such file or directory in /home/rocky/public_html/wp-content/themes/rocky/archive.php on line 68

    Warning: main(templatepath/sidebar1.php): failed to open stream: No such file or directory in /home/rocky/public_html/wp-content/themes/rocky/archive.php on line 68

    Warning: main(templatepath/sidebar1.php): failed to open stream: No such file or directory in /home/rocky/public_html/wp-content/themes/rocky/archive.php on line 68

    Warning: main(): Failed opening ‘templatepath/sidebar1.php’ for inclusion (include_path=’.:/usr/lib/php:/usr/local/lib/php’)

    Thread Starter rocky2889

    (@rocky2889)

    I got it to work because the TEMPLATEPATH” need to be in uppercase not lower case. Thanks for all your helps

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Archive page with different sidebar.’ is closed to new replies.