- Mar 22, 2013
- 9,144
- 10,489
I have this code:
It makes this:
I would like it to make this:
I'm 99% sure the code can be merged together to make this, but I don't really know PHP. The things I try generally break the entire page/site
Can anyone help?
PHP:
<p class="author-post">
<?php
printf( __( 'Posted by %s in %s on ', 'enginethemes' ),
get_the_author(),
get_the_category_list( __( ', ', 'enginethemes' ) )
);
?>
</p>
<p class="date-post"><?php the_time('M j'); ?> <sup><?php the_time('S');?></sup>, <?php the_time('Y');?></p>
It makes this:
I would like it to make this:
I'm 99% sure the code can be merged together to make this, but I don't really know PHP. The things I try generally break the entire page/site
Can anyone help?