cliaz
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: request help with Gravatar Positioning – left of post titlebrowsing the source of this page gave me some rather simpler implementations of how to do this.
this is the code I ended up using in the Main Template
<?php while (have_posts()) : the_post(); ?> <div class="post" id="post-<?php the_ID(); ?>"> <p><div class="gravatar"><?php echo get_avatar( get_the_author_email(), '60' ); ?></div> <h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2> <small><?php the_author() ?><br /> <?php the_time('F jS, Y') ?> at <?php the_time() ?></small> </p>which leads to this
Forum: Fixing WordPress
In reply to: request help with Gravatar Positioning – left of post titleI put in the avatar definition, that worked fine
Put in the div.entry stuff but I haven’t seen any tanglible results…I have no idea what that really does, so I may be trying to use it incorrectly
I managed to get the gravatars appearing on the same level as the Title, but on the right hand side using
<div class="post" id="post-<?php the_ID(); ?>"> <h2><div class="gravatar"><?php echo get_avatar( get_the_author_email(), '60' ); ?></div> <a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2>so that it looks like this, but I’m trying to get it to look like this
very much like posts are done in this thread actually, with
******** > Name
Gravatar > user type
******** > post datecheers for your help so far 🙂
Forum: Fixing WordPress
In reply to: request help with Gravatar Positioning – left of post title*bump* 🙁
Forum: Fixing WordPress
In reply to: Post via email from multiple domainsnvm, although I couldn’t find an answer in documentation/online, a little experimenting showed me that it can.
an email sent from an email account belonging to a user with said email account associated with it will be published under user’s name.
Forum: Fixing WordPress
In reply to: Post via email from multiple domainsAs bhupendra02 asked, I’m wondering if its possible to have multiple email addresses that WordPress can retrieve posts from – i.e. one per author – or even add a tag/section within the email where the poster can specify which author they are.
cheers,
– Klaus