Melachiah Posted October 16, 2006 Share Posted October 16, 2006 I'm currently working on a project in which a constantly updating archives is accessed. I've gotten everything set up save one single problem.I'm trying to get the data accessed from the links in the archive to open in an iframe.The visual parameters of the page are controled nby a template, then the page sorts the archive. The only problem is getting the page to load the data into the iframe when the links are clicked.The current coPHP page is listed below.[code]<?php/*Template Name: Archives*/?><?php get_header(); ?><div id="content" class="widecolumn"><h2>Archives:</h2> <ul> <?php wp_get_archives('type=daily');?> </ul></div> <?php get_footer(); ?>[/code] Link to comment https://forums.phpfreaks.com/topic/24147-targeting/ Share on other sites More sharing options...
printf Posted October 16, 2006 Share Posted October 16, 2006 Any IFRAME is a frame, so just using simple HTML targeting should work.[code]<a href='url' target='iframe_name'>Target Anchor</a>[/code]me! Link to comment https://forums.phpfreaks.com/topic/24147-targeting/#findComment-109750 Share on other sites More sharing options...
Melachiah Posted October 16, 2006 Author Share Posted October 16, 2006 I understand that, however in this situation the line <?php wp_get_archives('type=daily');?>displays a list of content as it is updated. I want that displayed content to appear in an Iframe but there is no way for me to edit the links as they are created dynamically. But I'm sure there has to be some way to instruct the links to open in a specific location. Link to comment https://forums.phpfreaks.com/topic/24147-targeting/#findComment-109760 Share on other sites More sharing options...
printf Posted October 16, 2006 Share Posted October 16, 2006 show me what this.... (outputs)[code]echo wp_get_archives('type=daily');[/code]me! Link to comment https://forums.phpfreaks.com/topic/24147-targeting/#findComment-109783 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.