WordPress.org

Plugin Directory

Advanced Export: Export WordPress Site Data Including Widget, Customizer & Media Files

Advanced Export: Export WordPress Site Data Including Widget, Customizer & Media Files

설명

Advanced Export is one of the best and powerful data exporter plugin. It has number of features which make more manageable and convenient to WordPress user to exact their WordPress site data and again re-use in another website.

Exported Zip can be imported by using plugin Advanced Import

It is designed specially for theme developer who want to provide demo data to their customer but it can be also use for migration purpose too.

Some listed features of Advanced Export are given below :

  • Export widget
  • Export option
  • Export media,
  • Export pages,
  • Export post
  • Export custom post type
  • Export actual media files

Dashboard Location

Dashboard -> Tool -> Advanced Export

스크린샷

  • Export Main Screen

설치

There are two ways to install any Advanced Export Plugin:

1.Upload zip file from Dashboard->Plugin->Add New “upload plugin”.
2.Extract Advanced Export and placed it to the “/wp-content/plugins/” directory.
– Activate the plugin through the “Plugins” menu in WordPress.

FAQ

Is Advanced Export is free plugin ?

Yes, it is free plugin.

I have exported zip using Advanced Export plugin, now how to import on other sites ?

After exported zip, you can import it using Advanced Import plugin

All of the options are not exported by the plugin, how can I include them?

By default all options on options table does not exported by this plugin, since it contain a lot of information and all information does not needed.
But you can use following hook to include all options:

add_action('advanced_export_all_options','prefix_add_all_options');
function prefix_add_all_options(){
    return true;
}

It is not recommended to use this hook unless you are migrating your site.

Some option table are not exported, what is happening?

You can include needed options by using advanced_export_include_options filter hook

add_action('advanced_export_include_options','prefix_include_my_options');
 function prefix_include_my_options( $included_options ){
     $my_options = array(
         'blogname',
         'blogdescription',
         'posts_per_page',
         'date_format',
         'time_format',
         'show_on_front',
         'thumbnail_size_w',
         'thumbnail_size_h',
         'thumbnail_crop',
         'medium_size_w',
         'medium_size_h',
         'medium_large_size_w',
         'medium_large_size_h',
         'avatar_default',
         'large_size_w',
         'large_size_h',
         'page_for_posts',
         'page_on_front',
         'woocommerce_shop_page_id',
         'woocommerce_cart_page_id',
         'woocommerce_checkout_page_id',
         'woocommerce_myaccount_page_id',
         'page_on_front',
         'show_on_front',
         'page_for_posts',
     );
     return array_unique (array_merge( $included_options, $my_options));
 }

Can you list all the hooks on the plugin?

Here are some important list of filter hooks:

  • advanced_export_page_slug
  • advanced_export_capability
  • advanced_export_ignore_post_types
  • advanced_export_include_options
  • advanced_export_all_options

Here are some important list of action hooks:

  • advanced_export_before_create_data_files
  • advanced_export_form

후기

모든 0 평가 읽기

기여자 & 개발자

“Advanced Export: Export WordPress Site Data Including Widget, Customizer & Media Files”(은)는 오픈 소스 소프트웨어입니다. 다음의 사람들이 이 플러그인에 기여하였습니다.

기여자

“Advanced Export: Export WordPress Site Data Including Widget, Customizer & Media Files”(이)가 1 개 언어로 번역되었습니다. 기여해 주셔서 번역자님께 감사드립니다.

자국어로 “Advanced Export: Export WordPress Site Data Including Widget, Customizer & Media Files”(을)를 번역하세요.

개발에 관심이 있으십니까?

코드 탐색하기는, SVN 저장소를 확인하시거나, 개발 기록RSS로 구독하세요.

변경이력

1.1.0 – 2024-11-12

  • Updated : WordPress version
  • Updated : Language folder

1.0.9 – 2024-08-21

  • Updated : WordPress version
  • Added : Plugin action link

1.0.8 – 2024-04-07

  • Updated : WordPress version

1.0.7 – 2022-05-26

  • Updated : WordPress version

1.0.6 – 2022-02-04

  • Updated : WordPress version

1.0.5 – 2022-01-05

  • Updated : WordPress version

1.0.4 – 2021-04-22

  • Updated : PHPCS

1.0.3 – 2020-06-22

  • Updated : Export post types order

1.0.2 – 2020-03-04

  • Updated : Permission of ZIP
  • Updated : Readme

1.0.1 – 2019-09-29

  • Updated : Some information

1.0.0

  • Initial release.