开发者 |
beaulebens
cfinke chrishardie marekhrabe mdrovdahl roccotripaldi |
---|---|
更新时间 | 2023年5月4日 05:04 |
PHP版本: | 4.0 及以上 |
WordPress版本: | 6.2 |
screen_icon()
keyring_importer_posts_pre_insert
which allows you to filter all post content before posts are imported/created.sideload_media
's last argument has changed to allow more flexibility.sideload_media
previously didn't handle multiple URLs properly. Now it should.noindex
tag to those post pages to avoid duplicate content issues. Note that this is retroactive, so it'll go back and find all your old links and try to download their content over time. If you don't want that to happen, you'll need to set a postmeta/Custom Field against all of them called remote_content
(set it to '1'), or you can filter keyring_instapaper_download_article_texts
and __return_false
to always turn it off; add_filter( 'keyring_instapaper_download_article_texts', '__return_false' );keyring_importer_header_css
) so that you can easily inject some custom CSS, without completely recreating the header.wp_slash()
before storing it, which means all future data is "clean". Working on a script to recover as much as possible, or you can delete old posts and re-import them, and their import data will be stored using the new approach, and thus be more accessible.