mithrustt
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Background height problemDoes no one know how I can fix this?
Forum: Themes and Templates
In reply to: Background height problemI can also provide the code for the classes if it’ll be helpful.
Forum: Plugins
In reply to: User-submitted reviewsOh wow, those both look great, actually. Thanks for the help.
Forum: Plugins
In reply to: User-submitted reviewsDoes anyone have an idea? I’ve been looking around but nothing has turned up.
Forum: Themes and Templates
In reply to: the_author_linkDang it, I’ve tried so many different things, but nothing works. Why does it seem this isn’t possible?
Forum: Themes and Templates
In reply to: the_category as list?Just put it inside:
<ul class=”categories”>
And then you have to create that class in your style.css and style however you want.
Forum: Themes and Templates
In reply to: the_category as list?Oh, sorry. I misread. Try this:
<?php the_category(‘, ‘); ?>
Forum: Themes and Templates
In reply to: How to make columns in wordpress ( give a method step by step)Your first link doesn’t work.
Forum: Themes and Templates
In reply to: the_category as list?This is what I have. You’ll likely have to do some CSS work to get it to look exactly like you want it, though.
<ul class="categories"> <?php wp_list_categories() ?> </ul>
Forum: Themes and Templates
In reply to: the_author_linkCome on, surely someone knows what’s going on here.
Forum: Fixing WordPress
In reply to: Author’s websiteI really hate to bump, but this is starting to really bother me. I don’t get what I’m doing wrong. Surely someone here can point out my stupidity by showing what simple thing I’ve missed. Also, if it helps, the link when hovered, shows up as:
https://think-theory.com/whatever-the-article-title-is/<a href=
I have no idea why it’s doing this either.
Forum: Fixing WordPress
In reply to: Author’s websiteOK, I’ve been continually working on this and it’s really starting to bother me. It seems like something so simple, and yet, I can’t get it to work. This is the code I have:
<?php if ( get_post_meta($post->ID, 'profile', true) ) { ?> <div class="profile_img_home"><a href="<?php the_author_link(); ?>"><img src="<?php bloginfo('stylesheet_directory'); ?>/images/profile/<?php echo get_post_meta($post->ID, "profile", $single = true); ?>" alt="<?php the_title(); ?>" /></a></div> <?php } ?>
You can see that I have the_author_link in there. I have this same code elsewhere on the site, but instead of the_author_link, I have the_permalink, and it works fine. So, I’m really not sure why it doesn’t work when I make this simple switch.
To see the problem I’m having, go here and look for the image to the right of the post title. You can see the link text “Michael Fox” which should be a link around the image instead.
https://think-theory.com/metroid-prime-3-corruption/
Any ideas?
Forum: Fixing WordPress
In reply to: Posts as multiple pagesAh, the nextpage tag works perfectly. I was thinking that there would be something similar to the <!–more–> tag, but wasn’t sure what it would be.
Thanks.
Forum: Fixing WordPress
In reply to: Author’s websiteThat’s what I’m trying to avoid. I don’t want to be putting a lot of extra work on the shoulders of the writers every time they make a post.
I have the image up and working now. I just want to give it the_author_link. I’m just not sure how to work the link in with the image code that I posted above.
Forum: Fixing WordPress
In reply to: Author’s websiteI’ve been working with in, but I still can’t quite get it. This is what I have:
<?php if ( get_post_meta($post->ID, 'profile', true) ) { ?> <div class="profile_img_home"><a href="<?php the_author_link(); ?>"><img src="<?php bloginfo('stylesheet_directory'); ?>/images/profile/<?php echo get_post_meta($post->ID, "profile", $single = true); ?>" alt="<?php the_author(); ?>" /></a></div> <?php } ?>
Any ideas?