Results 1 to 1 of 1
-
2nd May 2010, 10:11 AM #1OPMember
Collapsible panels wordpress help
Hey,
I'm wanting to show posts from a wordpress blog on another part of my site which isn't wordpress and I've got the code to do that but I'm wanting to show the last 10 posts in a collapsible panels.
I tried using this for it
PHP Code:<?php
// Include Wordpress
define('WP_USE_THEMES', false);
require('./news/wp-load.php');
query_posts('showposts=4');
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
<script src="SpryAssets/SpryCollapsiblePanel.js" type="text/javascript"></script>
<link href="SpryAssets/SpryCollapsiblePanel.css" rel="stylesheet" type="text/css" />
</head>
<body>
<?php while (have_posts()): the_post(); ?>
<?php endwhile; ?>
<?php while (have_posts()): the_post(); ?>
<div id="CollapsiblePanel1" class="CollapsiblePanel">
<div class="CollapsiblePanelTab" tabindex="0"><?php the_title(); ?></div>
<div class="CollapsiblePanelContent">
<?php the_content(); ?></div>
</div>
<script type="text/javascript">
<!--
var CollapsiblePanel1 = new Spry.Widget.CollapsiblePanel("CollapsiblePanel1");
//-->
</script>
<?php endwhile; ?>
</body>
</html>
anyone got any ideas.
EDIT: Figured it out used some sort of jQuery to get it workingSceneMan Reviewed by SceneMan on . Collapsible panels wordpress help Hey, I'm wanting to show posts from a wordpress blog on another part of my site which isn't wordpress and I've got the code to do that but I'm wanting to show the last 10 posts in a collapsible panels. I tried using this for it <?php // Include Wordpress define('WP_USE_THEMES', false); require('./news/wp-load.php'); query_posts('showposts=4'); Rating: 5YAY!
Sponsored Links
Thread Information
Users Browsing this Thread
There are currently 1 users browsing this thread. (0 members and 1 guests)
Similar Threads
-
Control Panels
By BlaZe in forum Webmaster ResourcesReplies: 30Last Post: 6th Jan 2012, 11:34 AM -
free control panels ? can some one help?
By kapil441 in forum Webmaster DiscussionReplies: 9Last Post: 16th Mar 2011, 03:57 AM -
Web hosting control panels
By Daniel in forum Polling PlazaReplies: 14Last Post: 15th Mar 2011, 08:02 PM -
Control Panels :: FREE and Commercial
By m107 in forum Useful SitesReplies: 11Last Post: 24th Jul 2010, 06:05 AM -
VPS control panels
By SceneMan in forum Server ManagementReplies: 5Last Post: 8th Jan 2010, 11:31 PM
themaCreator - create posts from...
Version 3.55 released. Open older version (or...