Tagged Questions
The excerpt tag has no wiki summary.
3
votes
3answers
400 views
Use Wordpress' Excerpt with a “more” link?
Wordpress' documentation suggests adding the following to functions.php to enable what I want to do:
function new_excerpt_more($post) {
return '<a href="'. get_permalink($post->ID) . ...
3
votes
3answers
767 views
How to generate excerpt with most searched words in PHP?
Here is an excerpt function:
function excerpt($text, $phrase, $radius = 100, $ending = "...") {
270 if (empty($text) or empty($phrase)) {
271 return ...
2
votes
2answers
241 views
How to include html tags within a wordpress excerpt?
Currently in a wordpress template, if you use the code the_excerpt() it will display the first 55 words of a post and strips all html from the post.
I need to include <a href... tags in the ...
2
votes
5answers
1k views
rails: get a teaser/excerpt for an article
I have a page that will list news articles. To cut down on the page's length, I only want to display a teaser (the first 200 words / 600 letters of the article) and then display a "more..." link, ...
1
vote
1answer
54 views
Custom Wordpress Excerpt not adding <p> tags
I'm in a bit of a sticky situation with a custom excerpt function I'm using.
Here's a link to the Pastebin with the Custom Excerpt Function: http://pastebin.com/gK0AWQbt
This is the blog index using ...
1
vote
1answer
63 views
Jackrabbit - why does search excerpt contain all node properties concatenated?
When I perform a jackrabbit (version 2.2.9) search and I call get row.getValue("rep:excerpt()") the returned string is just all the properties (excluding jcr: properties) concatenated. How do I ...
1
vote
1answer
58 views
How to indicate an omission of some part of a source code within written text?
I need to include a source code excerpt in my article. However, this code is too long, so I want to indicate an omission of some part, such as:
void f(int typeId) {
switch(typeId)
case ...
1
vote
1answer
131 views
Thinking Sphinx: matching_fields method returning nil
I'm using Thinking Sphinx in a Rails 3.0 application and am trying to take advantage of the "excerpts" and "matching_fields" methods in rendering the search results. Say I have the following model:
...
1
vote
1answer
977 views
how to remove thumbnail from the wordpress the_excerpt function?
I have the following situation:
<?php query_posts('page_id=2'); ?>
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<div class="post" ...
1
vote
1answer
182 views
How to add an extra link to the excerpt in wordpress
I'm trying to get this link to look like this:
Comment on this show >> | Listen to this show >>
Where "Comment on this show >>" gets populated properly with its permalink.
"Listen to this show >>" ...
1
vote
1answer
138 views
Check whether the_excerpt() function is called in a particular page
How to Check whether the_excerpt() function is called in a particular page example in a archive page.
The thing is i want to know whether the_excerpt() function is used to display the content or ...
1
vote
2answers
368 views
How to deal with html excerpt?
It introduced a lot of non-closed tags like below:
<div>
<table>...</table>
The </div> is truncated by code like this:
(strlen($row['body']) > 200 ? ...
0
votes
0answers
5 views
Custom Field in WordPress plugin YOURLS to Twitter %F
I'm trying to use YOURLS to Twitter (Wordpress plugin) to output the excerpt.
The plugin's instructions suggest
%F{something}: custom post field 'something'. See get_post_meta().
WordPress informs
...
0
votes
3answers
22 views
Show readmore in wordpress post
In wordpress Twenty Eleven theme how to show read more after one post without writing any <!--read more--> in post page
0
votes
2answers
33 views
Date in wordpress excerpt
When I use the_excerpt and the_date they appear on different lines
Is there a way to make them appear inline? I tried wrapping them in divs and styling them that way, but it doesn't work. Can I just ...
0
votes
1answer
84 views
Change code to expand blog entry on Shopify Couture theme (Django?)
Hi does anyone know how to update the code below so that blog 'excerpts' are fully expanded with full text and image/video removing the need to click through?
Thanks,
David
div id="blog" ...
0
votes
0answers
48 views
php recursive function string excerpt
I am trying to create an excerpt of a blog entry in html. I dont want the excerpt to include any images so I included a function which strips images out, which is working correctly.
I am using ...
0
votes
2answers
78 views
Wordpress static homepage and sticky posts excerpt
I tried several things but for some reason i'm not able to show sticky excerpts when i choose a static homepage.
The excerpt that is shown is the excerpt of the static homepage.
Does any body know ...
0
votes
1answer
165 views
Get a specific page's excerpt within the loop Wordpress
I am trying to create a loop that loads a random image from any posts, whilst also retrieving the excerpt of a specific page. I have done the random post part, but cannot get it to retrieve the page ...
0
votes
1answer
46 views
Wordpress discontinuity between Excerpt and its 'more-button'
I'm building a custom Wordpress theme.In my index.php page i'm looping to display the excerpts for all of my blog-posts.
this is how I break the post flow:
//At first I place <!--more--> in my ...
0
votes
1answer
74 views
Thinking Sphinx showing excerpts of a many-to-many (or one-to-many) association
I have:
define_index do
.
.
indexes tags.name, :as => tags
end
How do I show the excerpts for tags? Doing search_obj.excerpts.tags does not seem to work.
0
votes
1answer
150 views
Thinking Sphinx: How to render shorter excerpts?
I'm using Thinking Sphinx in a Rails application combined with the jQuery autocomplete plugin for my search form. I'm searching on an Entry model with a "note" attribute (text data type). I'm using ...
0
votes
0answers
27 views
Wordpress, is it possible to put excerpt before content in admin?
anyone have a tip to put excerpt textarea BEFORE content textarea in the WP admin ?
Thanks
0
votes
1answer
112 views
Excerpt displays � instead of ÆØÅ
Probably becourse it read it as
æ as & aelig;
ø as & oslash;
å as & aring;
http://img.lajlev.dk/ef75fcacb8ac88abb3aa93fd904335d2.png
How do I make wordpress display æøå and not cut ...
0
votes
1answer
250 views
How to code custom excerpt function using mb_substr to return 140 multibyte characters in WordPress?
I am not quite sure what I am doing, but found this code on-line for a custom excerpt as I am trying to return 140 multibyte Japanese characters on a custom front page in WordPress. It may be that I ...
0
votes
3answers
79 views
Excerpt isn't working with file contents
$excerpt= excerpt(file_get_contents("data/file.txt"), 30);
echo $excerpt;
function excerpt($str, $chars){
$index = strripos($str, ' ');
return substr($str, 0, $index)."...";
}
It don't ...
0
votes
1answer
393 views
Links within Wordpress excerpt don't work
On our site we have a speakers page for courses. Main post has the bio and I have added a sidebar for each post to show picture and the excerpt. The excerpt only contains links to websites and their ...
0
votes
2answers
138 views
Wordpress excerpt - image and text
This is the mock up i have
http://img697.imageshack.us/img697/3172/featuresb.jpg
Each section will be an excerpt of a post that has a certain tag.
Is there any way of doing this so a client doesnt ...
0
votes
1answer
83 views
Featured articles list
I'd like to display 10 articles from "featured" category. Only the first should have title and excerpt, the rest 9 only titles. How'd I do that?
Many thanks for your help.