Need help with wordpress...

Status
Not open for further replies.
19 comments
1. After the image, add " <!--more--> " in your post.

2. Not possible because wordpress detects categories in alphabetical ORDER.

kthxbai
 
1. if you want the content show like my site www.wiixps.com then do follow

depend on your theme .ok open index.php , then look

Code:
<div class="entry">
<?php the_content(''); ?>
</div>

replace all with this

Code:
<div class="entry">
                    <?php the_excerpt() ?>
                </div>

Save and upload to your host.that's it
 
I tired dude : but can find none of codes above :(


are you sure to open the right file? man, try finding that file (index) in your theme folder. I mean if you use theme abc then you have to open the index file in abc folder. it's not on the root folder of wp. ok.

if you cant find it then post the code of the index file to here. I'll help you
 
Last edited:
with your them. open \includes\entry.php
replace

Code:
<?php if (get_option('polished_blog_style') == 'false') { ?>
            <p><?php truncate_post(445); ?></p>
        <?php } else { ?>
            <?php the_content(''); ?>
        <?php }; ?>
with

Code:
<?php if (get_option('polished_blog_style') == 'false') { ?>
            <p><?php truncate_post(445); ?></p>
        <?php } else { ?>
            <?php the_excerpt(); ?>
        <?php }; ?>
 
Last edited:
Status
Not open for further replies.
Back
Top