Custom Fields Troubleshooting
-
I have using the WordPress Theme: Magasin Dos form <a https://www.paddsolutions.com, in custom fields I don’t want use my image form wp content because it’s make my blog loading are slow but i want use image from flickr.com or photobucket.com.
I’m trying send email to author at https://www.paddsolutions.com but it’s no respon.
this code at gallery.php:
<?php while (have_posts()) : the_post(); ?> <?php $customfields = get_post_custom(); $scrp = get_bloginfo('wpurl') . '/wp-content/themes/magasin-dos/functions/timthumb.php?'; if (empty($customfields['paddimage'][0])) { $imgpath = $scrp . 'src=' . get_bloginfo('wpurl') . '/wp-content/themes/magasin-dos/images/thumbnail.png' . '&w=68&h=68&zc=1'; } else { $imgpath = $scrp . 'src=' . get_bloginfo('wpurl') . $customfields['paddimage'][0] . '&w=390&h=250&zc=1'; } ?>
Any somebody help me?
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘Custom Fields Troubleshooting’ is closed to new replies.