marktj
Forum Replies Created
Viewing 2 replies - 1 through 2 (of 2 total)
-
Forum: Fixing WordPress
In reply to: class parameter not working?I have the same situation…
wp_list_bookmarks('echo=0&class=series&category=12&categorize=0&title_li=&show_description=1');No default “linkcat” added, nor my own “series” class as used above. Did you figure this out, kev_120?
Forum: Fixing WordPress
In reply to: global when doing have_posts inside function?I ended up having to go about this another (better) way.
In functions.php:
function F_custom_fields($need) { // The Loop all on one line if (have_posts()) : while (have_posts()) : the_post(); endwhile; endif; // Get all of the custom items from the wp_postmeta table for this post/page $custom_fields = get_post_custom(); // Return the needed custom item, if it exists if ($need == 'page_icon') { $page_icon = $custom_fields['eva_page_icon'][0]; if (!empty($page_icon)) { return $page_icon; } else { return FALSE; } } else if ($need == 'div_id') { $div_id = $custom_fields['eva_div_id'][0]; if (!empty($div_id)) { return $div_id; } else { return FALSE; } } }In header.php:
$begin_div_id = F_custom_fields('div_id'); if ($begin_div_id) { echo '<div id="'.$begin_div_id.'">'."\n"; }And in footer.php (to close the div tag started in header.php:
$end_div_id = F_custom_fields('div_id'); if ($end_div_id) { echo '</div>'; }
Viewing 2 replies - 1 through 2 (of 2 total)