Hi, I'm looking for some help. I'm not a developer, just a designer learning as I go and it's been a challenge trying to integrate the full zenphoto into my external site. I understand that you have a zenphoto as 'plugin' but even that makes little sense to me. Is there a demo page that I can reference the way the code is setup?
So it seems like a lot of this documentation is targeted at seasoned developers. I don't understand how to call the PHP script, where it goes (heading, body?) and what not. I'm intermediate when it comes to developing. If anyone can help, I would appreciate it. Thanks.
Comments
Also do some research on the WEB on how to create WEB pages using PHP.
I am sure you understand that we do not have the capacity to do such training.
On Zenphoto.org we basically use the Ruzee way. The easiest way would probably be #2 though.
`
<?php require('../wp-blog-header.php'); ?>
<?php get_header(); ?>
`
2. Then modify the header.php of your wordpress theme. Here is some rough code how we do it on zenphoto.org:
`
<?php $url = explode("/", $_SERVER['REQUEST_URI']); ?>
<?php bloginfo('name'); ?>
<?php
switch($url[2]) {
case "showcase":
echo " » Showcase";
break;
case "theme":
echo " » Themes";
break;
case "screenshots":
echo " » Screenshots";
break;
case "page":
echo " » Search";
break;
default:
wp_title();
break;
}
?>
`
This is of course hardcoded for our specific use.
Any simpler method where we can import titles as ZenPhoto uses it?