jerkjone
Forum Replies Created
-
Forum: Plugins
In reply to: [Frontpage-Slideshow] [Plugin: Frontpage-Slideshow] Linking images to pagesIs there any way to remove the “link” from the image? I don’t want it to go to the posts! Thanks!
Forum: Fixing WordPress
In reply to: Author List… Sorry I can't figure it out…I found a plugin that I think will work. I just have to alter a few things with it… Thanks for the help!
The plugin is “Author Avatars List”
I think it is going to work great!
Forum: Fixing WordPress
In reply to: Author List… Sorry I can't figure it out…Hum… I just am lost here I suppose… Thanks for the input and I am not running beta.. However post_count works, and display_name works… :-/
I want a simple list to post the author name and bio… I can get the pic inputted with the plugin I think…
Maybe there is a plugin I haven’t discovered yet that will do this?
Forum: Fixing WordPress
In reply to: Exclude a category.. not working!Okay I got it! Evidently it is a numerical value… not an alpha… used the following…
<?php wp_list_categories('exlude=1&sort_column=name&title_li=&depth=3'); ?>
Odd.. but it works… So I’m happy!
Forum: Fixing WordPress
In reply to: Tired of searching…wow.. code worked like a charm first time! i’m either getting better at this or I got really lucky!
THANKS so much for your help! I got the boxes down to I believe ??
Forum: Fixing WordPress
In reply to: Tired of searching…hum.. and where do I add the code for the custom boxes? in function.php?
Forum: Fixing WordPress
In reply to: Tired of searching…okay… but does my code above look appropriate? I can use divs also.. that isn’t a big deal… tomato tomoto..
Forum: Fixing WordPress
In reply to: Tired of searching…word.. that could totally work! ??
so… I’m wanting to use a table (i believe this will be easiest for me..)
<table width="575" border="0" cellpadding="15"> <tr> <td><?php $ad1url = get_post_meta($post->ID, 'ad1url', true); ?> <a href="<?php echo ($ad1url); ?>"> <?php $ad1 = get_post_meta($post->ID,'ad1', true); ?> <img src="<?php echo ($ad1); ?>"/></a> </td> <td>?</td> <td>?</td> <td>?</td> </tr> </table>
Something like this?
Rinse and repeat for the other three? However… It seems I’m forgetting a loop here? Or does this need to be in a loop? Wouldn’t I have qualifying issues in the definitions? Actually… Where is this getting defined initially at? Functions.php?