本文整理匯總了PHP中WP_Import::backfill_attachment_urls方法的典型用法代碼示例。如果您正苦於以下問題:PHP WP_Import::backfill_attachment_urls方法的具體用法?PHP WP_Import::backfill_attachment_urls怎麽用?PHP WP_Import::backfill_attachment_urls使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類WP_Import
的用法示例。
在下文中一共展示了WP_Import::backfill_attachment_urls方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: wpImportContents
public function wpImportContents($file)
{
$wp_import = new WP_Import();
$wp_import->fetch_attachments = false;
// doesn matter
// load data from saved option
$wp_import->post_orphans = get_option('_cri_post_orphans', array());
$wp_import->processed_posts = get_option('_cri_processed_posts', array());
$wp_import->url_remap = get_option('_cri_url_remap', array());
// the odd filter
add_filter('import_post_meta_key', array($wp_import, 'is_valid_meta_key'));
add_filter('http_request_timeout', array(&$wp_import, 'bump_request_timeout'));
// start buffer
ob_start();
// parse file and gather data
$wp_import->import_start($file);
// map author
$wp_import->get_author_mapping();
wp_suspend_cache_invalidation(true);
$wp_import->process_categories();
$wp_import->process_tags();
$wp_import->process_terms();
$wp_import->process_posts();
wp_suspend_cache_invalidation(false);
// update incorrect/missing information in the DB
$wp_import->backfill_parents();
$wp_import->backfill_attachment_urls();
$wp_import->remap_featured_images();
// end has output, so buffer it out
$wp_import->import_end();
// ignore the output, call in buffer
do_action('radium_after_content_import');
ob_end_clean();
// delete all attachment related stats
foreach (array('_cri_post_orphans', '_cri_processed_posts', '_cri_url_remap') as $op) {
delete_option($op);
}
return true;
}