Wordpress Themes - WP Forum at BFA

Wordpress Themes - WP Forum at BFA (http://forum.bytesforall.com/index.php)
-   Post-Kicker, -Byline & -Footer (http://forum.bytesforall.com/forumdisplay.php?f=17)
-   -   [SOLVED] Remove Byline in an individual post (http://forum.bytesforall.com/showthread.php?t=3134)

Per Lund Aug 25, 2009 02:50 AM

[SOLVED] Remove Byline in an individual post
 
Hi,
I need to remove (not show) the byline in just one post, all other posts shall show it. Are there any solution for that?

juggledad Aug 25, 2009 05:43 AM

find the id of the post then edit the loop (Style & edit CENTER COLUMN) and put a IF !is_post(...) around the byline code

Per Lund Aug 25, 2009 08:46 AM

I am not into php, can you take this step by step, course I don`t understand what I shall do with this code. The only thing I can see have to do with Byline in the loop is this:

<?php bfa_post_byline('<div class="post-byline">','</div>'); ?>

Shall I edit that code in any way?

AnneTanne Aug 27, 2009 06:40 AM

@juggledad: could it be the function has a different name?
When I try this, I get an error that is_post is a function that doesn't exist.

juggledad Aug 27, 2009 12:19 PM

Sorry, for a post it should be is_single
Quote:

is_single('17')
When Post 17 is being displayed as a single Post.
taken from http://codex.wordpress.org/Conditional_Tags

Per, try this - substitute your post id for the 17
HTML Code:

<?php if ( !is_single('17') ) { bfa_post_byline('<div class="post-byline">','</div>');} ?>
you can get the post id by editing the post, look at teh address and the number at the end is the post id

Per Lund Aug 27, 2009 11:21 PM

When I do this, all the content of the site disappears.

Per Lund Aug 28, 2009 12:42 AM

I used the code in the byline box instead and removed the content in the Byline, and thats good enough for me.


thanks

juggledad Aug 31, 2009 05:22 AM

I bad, I missed the closing ')' in the IF condition - post #5 is corrected


All times are GMT -6. The time now is 02:26 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.