dor
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: 2.8: Can not use is_page?..Thank you for your reply.
Yes, i just have tried — no success.
the_ID()displays correct IDs for every post/page, but this:<?php if (!is_page()) { comments_popup_link( __('No Comments') .' »', '1 ' . __('Comment') . ' »', __('% Comments') . ' »' ); } ?>… displays comments link for both posts and pages…
🙁
Forum: Plugins
In reply to: How to Mass Remove Link (mass deactivate URL Linked text inside posts)About
search regex— yes, it modifies stored data (that’s not what i needed, that’s why i wrotere.placeactually).No, i’m afraid i wouldn’t try
search and replace, sorry 🙁But you can ask author of this plugin, try here: http://urbangiraffe.com/plugins/search-regex/
Forum: Fixing WordPress
In reply to: How to embedd video so that it plays in my blog?Forum: Plugins
In reply to: How to Mass Remove Link (mass deactivate URL Linked text inside posts)Sorry!!
You should search for:
<a [^>]*>([^<]*)<\/a>It works. Tested 🙂
Forum: Plugins
In reply to: How to Mass Remove Link (mass deactivate URL Linked text inside posts)You can try
re.placeplugin:
http://wordpress.org/extend/plugins/replace/As a wild guess:
Search for:
<a[^>]*>([^<]*)</a>Replace with:
\1(not tested though)
Explanation:
Search for “<a” followed by any number of any letters but “>“, followed by “>“, followed by any number of any letters but “<“, followed by “</a>“. And remember parenthesed sequence of letters.And replace matched string with remembered sequence.
This could help (if i understood you question,-)
Sorry for my english.
Forum: Plugins
In reply to: Plugin that do “search and replace” automaticallyWow… Posted 6 months ago…
Anyway, you may find this useful:
http://wordpress.org/extend/plugins/replace/