wordpress prob :)

Status
Not open for further replies.

Rachs

Active Member
29
2011
0
0
i want to hide [entire post + readmore]

example : blah blah blah Readmore ...

my site already have a thumbnail that show pic and head of article

so i dont need these thing

anyone can help me?


and i need to hide post detail like date,author or something like that
 
11 comments
For hiding author and date you have to edit your theme.

Edit# that plugin does that allready, but i think its better to just do small edits on your theme and not add load to your site whit plugins.
 
First take backups so you dont fuck up your site!

You need to edit .php files, just check them all and find things like these:
Code:
<?php _e('Posted on',sa); ?> <?php the_time('d. M, Y'); ?> <?php _e('by',sa); ?> <?php the_author_posts_link(); ?> <?php _e('in',sa); ?>

and delete those lines.
 
1. edit: index.php or home.php (Main index template)
2. find <?php the_content(); ?> or <?php the_excerpt(); ?>
3. Remove it.
4. yey done!

removing it has nothing to do with css :| if u wanna hide try text-indent :))
 
1. edit: index.php or home.php (Main index template)
2. find <?php the_content(); ?> or <?php the_excerpt(); ?>
3. Remove it.
4. yey done!

removing it has nothing to do with css :| if u wanna hide try text-indent :))

this is for post entire on first page?

i think maybe hide plugin is better

becoz i want to show those

when they click to see full article

ok ill try the plugin and all of ur help

ty all mate :)
 
nah, editing it is better than installing a plugin. it will just hide the read more and the content of the post... if u wanna have it again then just put it again (y) ur choice. or if you don't want to remove it:

<!--
<?php the_content(); ?>
-->

or

<!--
<?php the_exceprt(); ?>
-->

i dunno if that'll work :))
 
Status
Not open for further replies.
Back
Top