Tagged Questions
0
votes
2answers
138 views
Stop wordpress from removing HTML attributes
I try to insert a post with html tag with class attribute, like this: <dl class="dl-horizontal">, but after saving the post, WP removes an attribute.
How can I fix it?
The only way I've found, ...
0
votes
2answers
421 views
Stop wordpress from adding html tags but not remove my own tags?
I've been trying to make wordpress stop adding html tags to my content but leave my own html tags alone?
Tried remove_filter( 'the_content', 'wpautop' ); and installed PS Disable Auto Formatting ...
0
votes
2answers
190 views
Strip HTML Tags From Search Results
When I make a search, if there is an image title within a img tag, it's displayed in a very ugly fashion among the search results (the whole tag is displayed and the picture too).
I found this script ...
-1
votes
1answer
57 views
HTML code stops showing after endwhile tag [closed]
I am having this issue when I am logged out of the back-office of Wordpress.
http://www.secure-events.co.za/about-us
For some reason the stops showing after the endwhile tag. Or it could be after ...
0
votes
1answer
210 views
How can I wrap html around the output of the_time function?
My current code in functions.php:
echo '<div class="post_date">'.the_time('d', '<div class="month">', '</div>').the_time('F', '<div class="day">', ...
0
votes
2answers
307 views
How to list Tags using get_tags in an html table?
Any suggestions on the simplest way to display tags using get_tags in an html table (4 columns across) ?
Example:
Tag 1 | Tag2 | Tag 3 | Tag 4
Tag 5 | Tag 6 | Tag 7 | Tag 8
I'm using the ...
-1
votes
1answer
671 views
get_page() unlike Loop returns the post content without html tags. How can I fix this?
get_page() unlike Loop returns the post content without html tags. I need tags. How can I fix this?
I don't want to change wysiwyg editor, here is the bad solution ...
0
votes
1answer
166 views
Do not run this code on posts with a specific tag!
This is sort of complicated.
I am looking for some php help related to WordPress blog.
The basic requirement is that some HTML code (ad code) is not supposed to run on posts with a specific tag. ...