Archives links open in iframe?
-
Okay here’s my question:
I’m working with iframes on my site. I have 2 columms, 1 shows the index.php where just the LOOP is and 1 for the menu.php (archives, search, calender etc.) which I made myself. Which means I tore the index.php in 2 pieces, the original index.php without the menu and the new menu.php.
Problem is I want the catagories and the archives to open in colummn 1. The links and the log in function in the menu open in a new window with the TAG=”_blank” which I figured outmyself. Can I do the same for the catagories and the archives with for example TAG=”column1″??? But where do I put that???
Code for menu.php:
<***div id=”menu”>-
<?php get_links_list(); ?>
<li id=”categories”><?php _e(‘Categories:’); ?>-
<?php wp_list_cats(); ?>
<li id=”archives”><?php _e(‘Archives:’); ?>
-
<?php wp_get_archives(‘type=monthly’); ?>
<li id=”calendar”>
<?php get_calendar(); ?><li id=”meta”><?php _e(‘Links:’); ?>
<li id=”other”><?php _e(‘Other:’); ?>
</div>
</body>
</html***>
- The topic ‘Archives links open in iframe?’ is closed to new replies.