I can't get any of that to work. :(
The page loads, but no bookmark list at all. The content area is empty.
What I've done for now is taken the current code in bookmarks.php and changed the false to true for'show_images'.
<?php
$args = array(
'title_li' => false,
'title_before' => '<h2>',
'title_after' => '</h2>',
'category_before' => false,
'category_after' => false,
'categorize' => true,
'show_description' => true,
'between' => '<br />',
'show_images' => true,
'show_rating' => false,
);
?>
<?php wp_list_bookmarks( $args ); ?>
Like you said, this turns the title off. I could probably make do with this.
I'd really like your second suggestion to work, though. Would it totally replace the first code you mentioned, or be added in addition to it? (not counting what is in between the <div> tags)
I mean, would this:
<?php $bookmarks = get_bookmarks( array( 'category' => 33 ) ); ?>
<?php foreach ( $bookmarks as $bookmark ) : ?>
replace this:
<?php $args = array(
'category' => 33,
'order' => 'ASC',
'orderby' => 'name',
'categorize' => false,
'title_li' => false,
'before' => false,
'after' => false,
'show_images' => true,
'show_description' => true,
'category_before' => false,
'category_after' => false,
); ?>
? The way I tried it, I tried one or the other, not both. But neither of them generated any content.
Did you intend for the argument/array list to be different from what is in bookmarks.php now?
And one more thing, I want to keep the links categorized. Here's my bookmarks page now:
http://gnowfglins.com/resources/
All I want to do is have an image with each link/title. Scroll down the page. One item so far has an image added.
If this is a big headache for you, I don't mind having to shelve it.