Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

First off I created my own theme from scratch. I've been trying to figure this out all day yesterday. Ended up using a couple of twentyelevens and twentyten's files just to accomplish this. Then deleted them cause there was no success. All I want to do is remove certain text such as "Filed Under" and "Posted By" that appears at the bottom of my single posts page. I want the Standard Single Posts Page to have the Meta Data, while the Gallery Single Posts Page doesn't have Meta Data.

I tried to use the loop.php, loop-single.php, loop-gallery.php, content.php method but nothing was working for me. Where can I start to get these two different post formats to display differently on their single pages? Is there anything I need to add to my functions.php file just to make this work? Do I need to recreate the loop files? Please help...

share|improve this question
This could be an option: wordpress.org/extend/plugins/custom-post-template – Hidde Oct 31 '12 at 17:48
Do you have a gallery.php? – Jrod Oct 31 '12 at 20:18
@Jrod Yes I tried it with gallery.php but ended up deleting it. What are all the files I need im order to get this working? Here is my other post someone tried to help me but nothing worked...stackoverflow.com/questions/13151068/… – keihead Oct 31 '12 at 23:11
@keihead it is hard to say exactly what files you need or perhaps don't need. Wordpress works on a hierarchy. For example when a gallery post is needed to be displayed wordpress will first look for gallery.php then single.php and failing both of those it will serve index.php. If you could provide a link to your project that would be helpful in trying to figure out which template is being served and then going into that file to remove the meta data. – Jrod Nov 1 '12 at 13:10
You must have delete your answers :( @jrod – keihead Nov 1 '12 at 16:22
show 2 more comments

1 Answer

up vote 1 down vote accepted

If 'gallery' is a category, you could edit your single.php template and use is_category():

<?php if ( in_category('gallery') ) : ?>
    <!-- Single post style for gallery posts -->
<?php else: ?>
    <!-- Normal single post style -->
<?php endif; ?>

If it's a custom post type, you could use get_post_type() in single.php and use its result in a condition, e.g.

<?php 
$post_type = get_post_type( $post->ID ); 

if ( $post_type == 'gallery' ): ?>
    <!-- Single post style for gallery posts -->
<?php else: ?>
    <!-- Normal single post style -->
<?php endif; ?>

If it's a post format, use get_post_format(), e.g.

<?php 
$post_format = get_post_format( $post->ID ); 

if ( $post_format == 'gallery' ): ?>
    <!-- Single post style for gallery posts -->
<?php else: ?>
    <!-- Normal single post style -->
<?php endif; ?>
share|improve this answer
Is get_post_type the same as post format?? – keihead Nov 1 '12 at 9:41
@keihead -- No; for that you can use get_post_format() instead of get_post_type(). See my updated answer. – stealthyninja Nov 1 '12 at 9:57
So in single.php I delete everything and add this code? – keihead Nov 1 '12 at 14:09
@keihead -- What does your single.php currently look like? – stealthyninja Nov 1 '12 at 14:42
Single.php is inside this pastebin// pastebin.com/3iahhA8R – keihead Nov 1 '12 at 15:19
show 9 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.