Plugin này chưa được cập nhật với 3 phiên bản mới nhất của WordPress. Nó có thể không được hỗ trợ và bảo trì, và có thể xung đột với các phiên bản WordPress mới nhất.

Remove HTML From Content

Mô tả

You may have some obscure reason for wanting the output that is sent by the_content() and get_the_content() to be simple HTML, free of the more exotic tags and objects. It may be for post aggregators or email notifications or some other edge case. This is for you!

Cài đặt

  1. Upload the remove-html-from-content folder to the /wp-content/plugins/ directory
  2. Navigate to wp-admin/plugins.php on your site (your WP plugin page)
  3. Alternatively, upload remove-html-from-content.zip via the upload plugin section at wp-admin/plugins.php
  4. Activate this plugin.

OR you can just install it with WordPress by going to Plugins >> Add New >> and typing Remove HTML From Content

Hỏi đáp

Will it do all content?

Just that which runs through the_content() and get_the_content() but you can add your own filters with

add_action( 'FILTER_NAME', [__CLASS__, 'do_filter'], 0 );

Or calling the conversion directly with

$text = Remove_Html_From_Content::do_filter($html);

Đánh giá

3 Tháng chín, 2016
I needed my site to post content provided by a government listserv (agendas for public meetings). I set an automatic forwarding filter in my email to my website via WordPress’ post-by-email function, assisted by the Postie plugin. That worked well but it had “unsubscribe” info at the bottom of the email — what if someone clicked the “unsubscribe” link? So I added the Text Obfuscator plugin to filter out the explanatory text, which was great, but it left the actual link since it didn’t filter out HTML. So that was a problem. But then, this plugin was recommended to me, and it worked perfectly. Problem solved. Thank you, developer! Note that this removes all HTML from being presented publicly, which includes all posts, new or old, including certain formatting, like bold and blockquotes. It doesn’t actually remove the HTML from the post (i.e., you can view the HTML using the text edit window for composing the post), so you can try and if it isn’t working for you, you can deactivate it, and your posts will revert to their previous state. While it would be nice if there were some filtering options, like Text Obfuscator has, or a way to turn it off for particular posts, it does exactly what it promises. Recommended!
Đọc tất cả 1 đánh giá

Người đóng góp & Lập trình viên

“Remove HTML From Content” là mã nguồn mở. Những người sau đã đóng góp vào plugin này.

Những người đóng góp

Nhật ký thay đổi

1.0.1

  • Minor updates after six years

1.0.0

  • Initial release