2015-02-08, 22:17:51
Hi Roamer,
You can modify where images are sources from by changing the url in the blog's theme layout file.
You can do that by using a simple if condition in the image url to determine if $_GET['post'] is set, displaying the image if false and not displaying it if true. Eg:
Hope that helps.
You can modify where images are sources from by changing the url in the blog's theme layout file.
You can do that by using a simple if condition in the image url to determine if $_GET['post'] is set, displaying the image if false and not displaying it if true. Eg:
Code:
if(!isset($_GET['post'])) {
echo '<img src="'.$path_to_image.$post->thumbnail'" alt="Alternate Text" />
}
Hope that helps.
Check out my website: JohnStray.com