WordPress help!

agentmanningctu

My Posts = Jack Bauer's Kills
Joined
Jun 10, 2009
Messages
11,139
Reaction score
0
FP$
8
How can I make it so that only a part of an article is shown, not the whole thing?
 
In HTML mode add
Code:
<strong><!--more--></strong>

In Visual mode click the "Insert More tag" button or hold Alt+Shift+T.
 
Alternatively, you can use this method, which is stable:
Go to the index.php (if not, main.php)and then find
PHP:
<span class="syntaxdefault"><?php the_content</span><span class="syntaxkeyword">();</span><span class="syntaxdefault"> ?></span>
and then replace it with:
PHP:
<span class="syntaxdefault"><?php the_excerpt</span><span class="syntaxkeyword">();</span><span class="syntaxdefault"> ?></span>

Then, I suggest using Advanced Excerpt plugin to control your excerpts.
 
Back
Top Bottom