Tagged Questions
0
votes
2answers
26 views
How can i show only 30% of the “the_content(”More…“)”?
I'm trying to make a page that has all the posts in it and shows 30% or less of the content of the post. So I'm editing a page template and I can't figure out how to show only 30% of the content. I'm ...
0
votes
2answers
85 views
Replace full content with an excerpt
My theme shows full posts on the main page and I want it to show only the summary, I tried searching for the_content tag in my theme's index.php file but it is not even there!
I don't have a home.php ...
0
votes
1answer
98 views
The_excerpt() doesn't parse <!--more--> - how to change that?
I'm using the_excerpt(); in blog.php file (post listing page) and it doesn't recognize <!--more--> if "Excerpt" field is empty and it grabs the beginning of the content as excerpt.
This issue ...
0
votes
1answer
235 views
Trimming a custom field to a length
I have a custom field added through the Advanced Custom Fields Plugin. I am trying to trim the content of the field down to a set number of words. I have tried to use the excerpt filter and setting ...
0
votes
1answer
62 views
How can I add more code to this?
<?php $my_query = new WP_Query( "cat=11&posts_per_page=1" );
if ( $my_query->have_posts() ) {
while ( $my_query->have_posts() ) {
$my_query->the_post();
...
0
votes
2answers
460 views
How can I define the RSS feed content length?
I’m trying to shorten the content of my RSS feed. Right now it displays way, way too much for each entry and I’ve tried to select the “Excerpt” in the Syndications setting in my option panel but it ...
0
votes
1answer
75 views
Filtered content appears in the excerpt
I am modifying the content using the "the_content" filter. But this filtering is seen in the excerpts also.
Consider the following code,
function modify_content($content = ''){
return 'HELLO ...
0
votes
1answer
209 views
How do i configure my content to show full posts?
So my blog is currently http://www.joegilbertphotography.co.uk/blog/ using the “delight” theme. Can anybody tell me how on earth I change it so instead of showing excerpts of posts, it just shows the ...
0
votes
1answer
154 views
How to show content for posts of a specific category only
I show excerpts of all posts at this site. Which works fine.
However, I would like show content for posts of a specific category, while keeping all others showing excerpts.
Is it possible, without a ...
0
votes
1answer
30 views
Display a paragraph in the index page that won't be displayed in the single post
Can i make it possible for an excerpt to be displayed in the index page but that part of the excerpt will not be displayed in the single post anymore?
1
vote
2answers
445 views
Displaying latest Posts - fixed height - Excerpt vs. Content?
On my static frontpage, I would like to fetch the two latest posts as shown in this link.
Now the posts should always be displayed like this (i.e. constant height, limited number of characters), no ...
0
votes
1answer
299 views
Excerpt vs content formatting woes
One of my posts has the following content:
This is a test post. Nothing more,
nothing less.
Three lines before the jump
<!--more-->
And a couple of more lines
after the jump.
Note: these were ...