Tagged Questions
2
votes
2answers
85 views
How to show video from specific category on sidebar?
I need to get video and content from recent posts in specific category called "Video" and show it on my sidebar.
The problem is when I need to have limited text content. so, when I use the_content(); ...
0
votes
1answer
76 views
How to disable the_excerpt from one post
I have this code for the_excerpt :
function get_excerpt(){
$excerpt = get_the_content();
$excerpt = preg_replace(" (\[.*?\])",'',$excerpt);
$excerpt = strip_shortcodes($excerpt);
...
0
votes
2answers
330 views
Wordpress Excerpt Paragraph Limiting
I was wondering if it was possible to get the first two paragraphs and the feature image in the excerpt.
I currently have the first 100 words, but would like the the first two paragraphs.
What I ...
