Hi fellas,
I´m writing a new article and this one includes an mp3 file with the JW Player plugin.
Is it possible make the player visible in the post overview page?
Or is there a way to show the entire article in the blog feed?
Hi fellas,
I´m writing a new article and this one includes an mp3 file with the JW Player plugin.
Is it possible make the player visible in the post overview page?
Or is there a way to show the entire article in the blog feed?
Okay,
I´ve found this post here:
http://www.kriesi.at/support/topic/display-entire-blog-posts-in-feed
Solves to 99% my question.
But one thing.
Is it possible to run the:
the_content() function for only one certain post?
You could use a conditional: http://codex.wordpress.org/Conditional_Tags in this case - the code would look like:
is_single( array( 17, 19, 1, 11 ) )
{
the_content();
}
else
{
the_excerpt();
}
and replace 17, 19, 1, 11 with your post/page ids.
You must log in to post.