How can the author / event organizer be displayed on the event post? I’d like to have the event organizer shown up on all events they posted and on top a list with authors. Saw that other events plugins (WP Event Manager, The Event Calendar, etc.) provide this option but haven’t been able to solve it with Events Manager.
Thanks in advance!
Anna
Also how do I get three columns working?
Thank you in advance.
Jane
]]><span class="author-name">Author: <?php the_author() ?></span>
but can you show me where I best place it.
Thanks!
https://www.ads-software.com/plugins/acf-recent-posts-widget/
]]>I’ve just installed 3.6.1. I’m using the new 2013 theme for WordPress. For reasons I don’t understand the author name isn’t displaying.
The public display name option in user profile is set. I switched to the old 2011 theme to see if there was the same problem and there was – no author name appearing. So, as this doesn’t seem to be a problem in the theme code I must be able to change something in the Admin panel to make the author name appear.
Thanks for your help in Advance.
Sonofadoc
]]>Is there a setting somewhere?
Thanks.
]]>right now it just says
“Posted 1 day, 21 hours ago at 2:42 pm.”
thats it… i wanted to just display the date and posted by (author)…
I have gone in to my admin profile but there is no option in there… is there a code that i can insert in to the index.php or single-post.php that i can use? if so where do i put it in? haha
thank you for your help out there… i know someone knows what im talking about!
haha
Regards
Magdi
]]>I already have author.php setup, however, I want to display some author information over on the right hand side of my single.php file.
Please checkout my code below….
<?php get_header(); ?>
<div id="content">
<?php
if(isset($_GET['author_name'])) :
$curauth = get_userdatabylogin($author_name);
else :
$curauth = get_userdata(intval($author));
endif;
?>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<div class="post" id="post-<?php the_ID(); ?>">
<h2 class="title"><?php the_title(); ?></h2>
<div id="stats">
<span><?php the_time('j F Y') ?> | <span><?php comments_number('No Comments', '1 Comment', '% Comments' );?></span></div>
<div id="stats"><span>PUBLISHED BY: <a href="<?php the_author_meta('user_url'); ?>"><?php the_author_meta('aim'); ?></a></span></div>
<div class="entry clearfloat">
<?php the_content('Read the rest of this entry »'); ?>
<?php wp_link_pages(array('before' => '<p><strong>Pages:</strong> ', 'after' => '</p>', 'next_or_number' => 'number')); ?>
</div>
<div id="tools">
<div style="float:left;"><a href=" https://digg.com/submit?phase=2&url= <?php the_permalink();?>&title=<?php the_title();?>" target="_blank"><img src="<?php echo get_option('home'); ?>/wp-content/themes/arthemia/images/sociable/digg.png" title="Digg this!"></a><a href=" https://del.icio.us/post?v=4&noui&jump=close
&url=<?php the_permalink();?>
&title=<?php the_title();?>" target="_blank"><img src="<?php echo get_option('home'); ?>/wp-content/themes/arthemia/images/sociable/delicious.png" title="Add to del.icio.us!"></a><a href="https://www.stumbleupon.com/submit?url=<?php the_permalink(); ?>&title=<?php the_title(); ?>" target="_blank"><img src="<?php echo get_option('home'); ?>/wp-content/themes/arthemia/images/sociable/stumbleupon.png" title="Stumble this!"></a><a href=" https://technorati.com/faves?add=<?php echo get_option('home'); ?>" target="_blank"><img src="<?php echo get_option('home'); ?>/wp-content/themes/arthemia/images/sociable/technorati.png" title="Add to Techorati!"></a><a href="https://www.facebook.com/sharer.php?u=<?php the_permalink();?>&t=<?php the_title();?>" target="_blank"><img src="<?php echo get_option('home'); ?>/wp-content/themes/arthemia/images/sociable/facebook.png" title="Share on Facebook!"></a><a href=" https://www.newsvine.com/_tools/seed&save? u=<?php the_permalink();?>&h=<?php the_title();?>" target="_blank"><img src="<?php echo get_option('home'); ?>/wp-content/themes/arthemia/images/sociable/newsvine.png" title="Seed Newsvine!"></a><a href=" https://reddit.com/submit?url=
<?php the_permalink();?>&title=<?php the_title();?>" target="_blank"><img src="<?php echo get_option('home'); ?>/wp-content/themes/arthemia/images/sociable/reddit.png" title="Reddit!"></a><a href=" https://myweb.yahoo.com/myresults/bookmarklet? t=<?php the_title();?>&u=<?php the_permalink();?>&ei=UTF" target="_blank"><img src="<?php echo get_option('home'); ?>/wp-content/themes/arthemia/images/sociable/yahoomyweb.png" title="Add to Yahoo!"></a>
</div>
<div style="float:right;display:block;"><?php if(function_exists('the_ratings')) { the_ratings(); } ?></div>
</div>
</div>
<div id="comments">
<?php comments_template(); ?>
</div>
<?php endwhile; else: ?>
<p>Sorry, no posts matched your criteria.</p>
<?php endif; ?>
</div>
<div id="bloginfo">
<div h2 class="title"><?php echo $curauth->nickname; ?>
</div>
<div class="right">
<?php
global $authordata;
$authordata=get_userdata(get_query_var( 'author' ));
userphoto_the_author_photo(); ?>
</div>
<?php echo $curauth->user_description; ?>
<p><strong>Email:</strong> <?php the_author_meta('yim'); ?></p>
</div>
<?php get_sidebar(); ?>
<?php get_footer(); ?>
This code at the bottom works on my author.php just not on the single.php
Any ideas on how I can resolve?
Many thanks in advance.
Adam
I am using the (adspress) theme at https://www.blogohblog.com/download/adspress.zip . I tried editing the index.php and looking for “the loop” but cant find anything related to the author of each post.
Anybody who can solve this will be deemed the ultimate champion of Word Press in my eyes!
]]>Does anyone know how to retrieve and display the author names next to the headline from the wordpress rss feed?
]]>