主页/WordPress笔记/博客文章/综合文章/7个最佳WordPress插件用于克隆或复制网站(对比)

7个最佳WordPress插件用于克隆或复制网站(对比)

写 Bug工程师:

在撰写关于WordPress插件的文章时,我会确保文章的结构清晰、信息准确,并且会特别强调每个插件的特点和适用场景。以下是一个关于如何选择和使用这些插件来克隆或复制网站的示例文章:


WordPress 插件:克隆或复制网站的最佳选择

在WordPress环境中,克隆或复制网站是一种常见的需求,尤其是在开发新站点、备份现有站点或是进行SEO优化时。以下是七个强大的WordPress插件,它们可以帮助您轻松地实现这一目标。

1. WooCommerce Clone

  • 特点:专门设计用于复制 WooCommerce 商店的功能。
  • 优点:保持所有商品、库存、订单和客户数据的一致性。
  • 适用场景:如果您正在创建一个新的电子商务商店并希望保持与现有商店相同的购物体验。

2. Siteimprove Clone

  • 特点:提供了一个完全兼容的WordPress克隆工具,可以快速生成一个完全一样的网站。
  • 优点:包括了Google Analytics追踪器、社交媒体链接等元素。
  • 适用场景:适用于需要完整保留原有功能和SEO设置的网站。

3. Elementor Clone

  • 特点:允许您通过拖放界面快速构建网页布局。
  • 优点:无需编写任何HTML代码即可完成复杂的页面设计。
  • 适用场景:适合那些想要快速定制网站外观但又不想花时间学习前端框架的用户。

4. WP Super Cache

  • 特点:为您的网站添加缓存机制,以提高加载速度和减少服务器负载。
  • 优点:显著提升用户体验,尤其是对于高流量站点来说非常重要。
  • 适用场景:适用于大多数类型的网站,特别是博客和在线商店。

5. Yoast SEO Clone

  • 特点:内置SEO功能,帮助您更轻松地优化搜索引擎排名。
  • 优点:自动检测和修正元标签、标题和其他关键要素。
  • 适用场景:非常适合那些希望通过简单的方式提升其SEO性能的网站。

6. Jetpack

  • 特点:提供了一系列高级功能,如安全更新、评论管理、社交分享等。
  • 优点:增强用户体验的同时,简化了网站管理和维护过程。
  • 适用场景:适用于各种类型和规模的网站,从个人博客到大型企业网站。

7. All in One WP Migration

  • 特点:专业的迁移工具,支持多种数据库格式转换。
  • 优点:自动化迁移流程,减少了手动操作的复杂性和错误率。
  • 适用场景:对于频繁需要重新部署或迁移网站的用户来说非常有用。

示例代码及使用步骤

假设您已经选择了“Siteimprove Clone”作为克隆工具,并且有需要克隆一个现有的WordPress网站。下面是如何使用这个插件进行克隆的步骤:

  1. 安装插件

    • 登录到您的WordPress后台。
    • 导航到“插件” -> “安装” -> 找到并点击“Siteimprove Clone”插件。
    • 按照向导中的提示完成安装过程。
  2. 克隆网站

    • 返回到“插件” -> “Siteimprove Clone”。
    • 点击“克隆网站”按钮,系统将会引导您选择要克隆的源网站URL以及目标目录。
  3. 配置选项

    • 在克隆过程中,您可能需要根据自己的需求调整一些配置选项,例如数据库连接方式、表名等。
    • 完成配置后,系统会开始执行克隆过程。
  4. 验证克隆结果

    • 克隆完成后,检查目标网站是否按照预期工作,确认所有的内容和功能都已正确迁移到新的位置。

效果展示

通过上述步骤,您可以成功地克隆出一个与原网站完全一致的WordPress网站。这不仅有助于保护您的原始数据不被修改,还提供了许多额外的好处,比如更高的安全性、更快的加载速度以及更好的用户体验。


请注意,以上步骤和说明都是基于一般性的指导原则,具体的操作可能会因所选插件的具体版本和您的特定需求而有所不同。建议在实际操作前先阅读插件的官方文档和教程,以便获得最准确的信息和最佳实践。

黑板IDE教书匠:

好的,下面我将详细介绍一些优秀的WordPress插件,它们可以帮助您轻松地克隆或复制网站。

1. WP-CLI

简介: WordPress CLI (命令行界面) 是一个轻量级工具,可以让你通过简单的命令行操作来管理WordPress站点。它允许你快速创建、编辑和删除主题和插件,以及执行其他一系列操作。

示例代码:

wp create-theme mytheme

这会创建一个新的名为 mytheme 的主题。

命令行操作:

  1. 创建新主题: wp create-theme <theme_name>
  2. 更改主题名称: wp rename-theme <old_theme_name> <new_theme_name>
  3. 删除主题: wp delete-theme <theme_name>
  4. 检查主题: wp show-theme <theme_name>

2. WP-Clone

简介: WP-Clone 是一个功能强大的插件,可以让你轻松克隆网站。它支持拖放功能,使用户能够直观地从一个网站复制到另一个网站。

示例代码:


add_action('admin_menu', 'wp_clone_register_menu');
function wp_clone_register_menu() {
    add_menu_page(
        __('WP Clone', 'wp-clone'),
        __('WP Clone', 'wp-clone'),
        'manage_options',
        'wp_clone',
        'wp_clone_admin_page'
    );
}

function wp_clone_admin_page() {
    ?>
    <div class="wrap">
        <h2><?php _e('WP Clone Settings', 'wp-clone'); ?></h2>
        <?php settings_errors(); ?>
        <form method="post" action="<?php echo esc_url(admin_url('admin-post.php')); ?>">
            <table class="form-table">
                <tr valign="top">
                    <th scope="row"><?php _e('Destination URL', 'wp-clone'); ?>:</th>
                    <td>
                        <input type="text" name="destination_url" value="<?php echo get_option('wp_clone_destination_url'); ?>" />
                    </td>
                </tr>
                <tr valign="top">
                    <th scope="row"><?php _e('Source URL', 'wp-clone'); ?>:</th>
                    <td>
                        <input type="text" name="source_url" value="<?php echo get_option('wp_clone_source_url'); ?>" />
                    </td>
                </tr>
                <tr valign="top">
                    <th scope="row"><?php _e('Username', 'wp-clone'); ?>:</th>
                    <td>
                        <input type="text" name="username" value="<?php echo get_option('wp_clone_username'); ?>" />
                    </td>
                </tr>
                <tr valign="top">
                    <th scope="row"><?php _e('Password', 'wp-clone'); ?>:</th>
                    <td>
                        <input type="password" name="password" value="<?php echo get_option('wp_clone_password'); ?>" />
                    </td>
                </tr>
                <tr valign="top">
                    <th scope="row"><?php _e('Destination Path', 'wp-clone'); ?>:</th>
                    <td>
                        <input type="text" name="destination_path" value="<?php echo get_option('wp_clone_destination_path'); ?>" />
                    </td>
                </tr>
                <tr valign="top">
                    <th scope="row"><?php _e('Backup Files?', 'wp-clone'); ?>:</th>
                    <td>
                        <select name="backup_files">
                            <option value="yes" <?php selected(get_option('wp_clone_backup_files'), 'yes'); ?>><?php _e('Yes', 'wp-clone'); ?></option>
                            <option value="no" <?php selected(get_option('wp_clone_backup_files'), 'no'); ?>><?php _e('No', 'wp-clone'); ?></option>
                        </select>
                    </td>
                </tr>
                <tr valign="top">
                    <th scope="row"><?php _e('Delete Backup Files?', 'wp-clone'); ?>:</th>
                    <td>
                        <select name="delete_backup_files">
                            <option value="yes" <?php selected(get_option('wp_clone_delete_backup_files'), 'yes'); ?>><?php _e('Yes', 'wp-clone'); ?></option>
                            <option value="no" <?php selected(get_option('wp_clone_delete_backup_files'), 'no'); ?>><?php _e('No', 'wp-clone'); ?></option>
                        </select>
                    </td>
                </tr>
                <tr valign="top">
                    <th scope="row"><?php _e('Use HTTPS?', 'wp-clone'); ?>:</th>
                    <td>
                        <input type="checkbox" name="use_https" value="yes" <?php checked(get_option('wp_clone_use_https'), 'yes'); ?> /> <?php _e('Yes', 'wp-clone'); ?>
                    </td>
                </tr>
                <tr valign="top">
                    <th scope="row"><?php _e('Enable SSL Certificate', 'wp-clone'); ?>:</th>
                    <td>
                        <input type="checkbox" name="enable_ssl_certificate" value="yes" <?php checked(get_option('wp_clone_enable_ssl_certificate'), 'yes'); ?> /> <?php _e('Yes', 'wp-clone'); ?>
                    </td>
                </tr>
                <tr valign="top">
                    <th scope="row"><?php _e('SSL Certificate Domain', 'wp-clone'); ?>:</th>
                    <td>
                        <input type="text" name="ssl_certificate_domain" value="<?php echo get_option('wp_clone_ssl_certificate_domain'); ?>" />
                    </td>
                </tr>
                <tr valign="top">
                    <th scope="row"><?php _e('Enable SSL Redirects', 'wp-clone'); ?>:</th>
                    <td>
                        <input type="checkbox" name="enable_ssl_redirects" value="yes" <?php checked(get_option('wp_clone_enable_ssl_redirects'), 'yes'); ?> /> <?php _e('Yes', 'wp-clone'); ?>
                    </td>
                </tr>
                <tr valign="top">
                    <th scope="row"><?php _e('Enable SSL Redirects Domain', 'wp-clone'); ?>:</th>
                    <td>
                        <input type="text" name="enable_ssl_redirects_domain" value="<?php echo get_option('wp_clone_enable_ssl_redirects_domain'); ?>" />
                    </td>
                </tr>
                <tr valign="top">
                    <th scope="row"><?php _e('Custom CSS', 'wp-clone'); ?>:</th>
                    <td>
                        <textarea name="custom_css"><?php echo get_option('wp_clone_custom_css'); ?></textarea>
                    </td>
                </tr>
                <tr valign="top">
                    <th scope="row"><?php _e('Custom JS', 'wp-clone'); ?>:</th>
                    <td>
                        <textarea name="custom_js"><?php echo get_option('wp_clone_custom_js'); ?></textarea>
                    </td>
                </tr>
                <tr valign="top">
                    <th scope="row"><?php _e('Custom Images', 'wp-clone'); ?>:</th>
                    <td>
                        <textarea name="custom_images"><?php echo get_option('wp_clone_custom_images'); ?></textarea>
                    </td>
                </tr>
                <tr valign="top">
                    <th scope="row"><?php _e('Custom Fonts', 'wp-clone'); ?>:</th>
                    <td>
                        <textarea name="custom_fonts"><?php echo get_option('wp_clone_custom_fonts'); ?></textarea>
                    </td>
                </tr>
                <tr valign="top">
                    <th scope="row"><?php _e('Custom Background', 'wp-clone'); ?>:</th>
                    <td>
                        <textarea name="custom_background"><?php echo get_option('wp_clone_custom_background'); ?></textarea>
                    </td>
                </tr>
                <tr valign="top">
                    <th scope="row"><?php _e('Custom Header Image', 'wp-clone'); ?>:</th>
                    <td>
                        <textarea name="custom_header_image"><?php echo get_option('wp_clone_custom_header_image'); ?></textarea>
                    </td>
                </tr>
                <tr valign="top">
                    <th scope="row"><?php _e('Custom Footer Image', 'wp-clone'); ?>:</th>
                    <td>
                        <textarea name="custom_footer_image"><?php echo get_option('wp_clone_custom_footer_image'); ?></textarea>
                    </td>
                </tr>
                <tr valign="top">
                    <th scope="row"><?php _e('Custom Navigation Menu', 'wp-clone'); ?>:</th>
                    <td>
                        <textarea name="custom_navigation_menu"><?php echo get_option('wp_clone_custom_navigation_menu'); ?></textarea>
                    </td>
                </tr>
                <tr valign="top">
                    <th scope="row"><?php _e('Custom Header Text Color', 'wp-clone'); ?>:</th>
                    <td>
                        <input type="color" name="custom_header_text_color" value="<?php echo get_option('wp_clone_custom_header_text_color'); ?>" />
                    </td>
                </tr>
                <tr valign="top">
                    <th scope="row"><?php _e('Custom Header Background Color', 'wp-clone'); ?>:</th>
                    <td>
                        <input type="color" name="custom_header_background_color" value="<?php echo get_option('wp_clone_custom_header_background_color'); ?>" />
                    </td>
                </tr>
                <tr valign="top">
                    <th scope="row"><?php _e('Custom Header Background Size', 'wp-clone'); ?>:</th>
                    <td>
                        <input type="number" name="custom_header_background_size" value="<?php echo get_option('wp_clone_custom_header_background_size'); ?>" min="0" max="100" step="1" />
                    </td>
                </tr>
                <tr valign="top">
                    <th scope="row"><?php _e('Custom Header Background Repeat', 'wp-clone'); ?>:</th>
                    <td>
                        <input type="radio" name="custom_header_background_repeat" value="repeat" <?php if (get_option('wp_clone_custom_header_background_repeat') == 'repeat') {echo 'checked';}?> /> Repeat
                        <input type="radio" name="custom_header_background_repeat" value="no-repeat" <?php if (get_option('wp_clone_custom_header_background_repeat') == 'no-repeat') {echo 'checked';}?> /> No repeat
                    </td>
                </tr>
                <tr valign="top">
                    <th scope="row"><?php _e('Custom Header Background Position', 'wp-clone'); ?>:</th>
                    <td>
                        <input type="number" name="custom_header_background_position_x" value="<?php echo get_option('wp_clone_custom_header_background_position_x'); ?>" min="0" max="100" step="1" />
                        <input type="number" name="custom_header_background_position_y" value="<?php echo get_option('wp_clone_custom_header_background_position_y'); ?>" min="0" max="100" step="1" />
                    </td>
                </tr>
                <tr valign="top">
                    <th scope="row"><?php _e('Custom Header Text Size', 'wp-clone'); ?>:</th>
                    <td>
                        <input type="number" name="custom_header_text_size" value="<?php echo get_option('wp_clone_custom_header_text_size'); ?>" min="0" max="100" step="1" />
                    </td>
                </tr>
                <tr valign="top">
                    <th scope="row"><?php _e('Custom Header Text Color', 'wp-clone'); ?>:</th>
                    <td>
                        <input type="color" name="custom_header_text_color" value="<?php echo get_option('wp_clone_custom_header_text_color'); ?>" />
                    </td>
                </tr>
                <tr valign="top">
                    <th scope="row"><?php _e('Custom Header Text Font Family', 'wp-clone'); ?>:</th>
                    <td>
                        <input type="text" name="custom_header_text_font_family" value="<?php echo get_option('wp_clone_custom_header_text_font_family'); ?>" />
                    </td>
                </tr>
                <tr valign="top">
                    <th scope="row"><?php _e('Custom Header Text Font Style', 'wp-clone'); ?>:</th>
                    <td>
                        <input type="text" name="custom_header_text_font_style" value="<?php echo get_option('wp_clone_custom_header_text_font_style'); ?>" />
                    </td>
                </tr>
                <tr valign="top">
                    <th scope="row"><?php _e('Custom Header Text Font Weight', 'wp-clone'); ?>:</th>
                    <td>
                        <input type="text" name="custom_header_text_font_weight" value="<?php echo get_option('wp_clone_custom_header_text_font_weight'); ?>" />
                    </td>
                </tr>
                <tr valign="top">
                    <th scope="row"><?php _e('Custom Header Text Font Size', 'wp-clone'); ?>:</th>
                    <td>
                        <input type="number" name="custom_header_text_font_size" value="<?php echo get_option('wp_clone_custom_header_text_font_size'); ?>" min="0" max="100" step="1" />
                    </td>
                </tr>
                <tr valign="top">
                    <th scope="row"><?php _e('Custom Header Text Line Height', 'wp-clone'); ?>:</th>
                    <td>
                        <input type="number" name="custom_header_text_line_height" value="<?php echo get_option('wp_clone_custom_header_text_line_height'); ?>" min="0" max="100" step="1" />
                    </td>
                </tr>
                <tr valign="top">
                    <th scope="row"><?php _e('Custom Header Text Letter Spacing', 'wp-clone'); ?>:</th>
                    <td>
                        <input type="number" name="custom_header_text_letter_spacing" value="<?php echo get_option('wp_clone_custom_header_text_letter_spacing'); ?>" min="0" max="100" step="1" />
                    </td>
                </tr>
                <tr valign="top">
                    <th scope="row"><?php _e('Custom Header Text Top Margin', 'wp-clone'); ?>:</th>
                    <td>
                        <input type="number" name="custom_header_text_top_margin" value="<?php echo get_option('wp_clone_custom_header_text_top_margin'); ?>" min="0" max="100" step="1" />
                    </td>
                </tr>
                <tr valign="top">
                    <th scope="row"><?php _e('Custom Header Text Bottom Margin', 'wp-clone'); ?>:</th>
                    <td>
                        <input type="number" name="custom_header_text_bottom_margin" value="<?php echo get_option('wp_clone_custom_header_text_bottom_margin'); ?>" min="0" max="100" step="1" />
                    </td>
                </tr>
                <tr valign="top">
                    <th scope="row"><?php _e('Custom Header Text Left Margin', 'wp-clone'); ?>:</th>
                    <td>
                        <input type="number" name="custom_header_text_left_margin" value="<?php echo get_option('wp_clone_custom_header_text_left_margin'); ?>" min="0" max="100" step="1" />
                    </td>
                </tr>
                <tr valign="top">
                    <th scope="row"><?php _e('Custom Header Text Right Margin', 'wp-clone'); ?>:</th>
                    <td>
                        <input type="number" name="custom_header_text_right_margin" value="<?php echo get_option('wp_clone_custom_header_text_right_margin'); ?>" min="0" max="100" step="1" />
                    </td>
                </tr>
                <tr valign="top">
                    <th scope="row"><?php _e('Custom Header Text Align', 'wp-clone'); ?>:</th>
                    <td>
                        <input type="radio" name="custom_header_text_align" value="left" <?php if (get_option('wp_clone_custom_header_text_align') == 'left') {echo 'checked';}?> /> Left
                        <input type="radio" name="custom_header_text_align" value="center" <?php if (get_option('wp_clone_custom_header_text_align') == 'center') {echo 'checked';}?> /> Center
                        <input type="radio" name="custom_header_text_align" value="right" <?php if (get_option('wp_clone_custom_header_text_align') == 'right') {echo 'checked';}?> /> Right
                    </td>
                </tr>
                <tr valign="top">
                    <th scope="row"><?php _e('Custom Header Text Justify', 'wp-clone'); ?>:</th>
                    <td>
                        <input type="radio" name="custom_header_text_justify" value="left" <?php if (get_option('wp_clone_custom_header_text_justify') == 'left') {echo 'checked';}?> /> Left justify
                        <input type="radio" name="custom_header_text_justify" value="center" <?php if (get_option('wp_clone_custom_header_text_justify') == 'center') {echo 'checked';}?> /> Center justify
                        <input type="radio" name="custom_header_text_justify" value="right" <?php if (get_option('wp_clone_custom_header_text_justify') == 'right') {echo 'checked';}?> /> Right justify
                    </td>
                </tr>
                <tr valign="top">
                    <th scope="row"><?php _e('Custom Header Text Align Width', 'wp-clone'); ?>:</th>
                    <td>
                        <input type="number" name="custom_header_text_align_width" value="<?php echo get_option('wp_clone_custom_header_text_align_width'); ?>" min="0" max="100" step="1" />
                    </td>
                </tr>
                <tr valign="top">
                    <th scope="row"><?php _e('Custom Header Text Align Vertical', 'wp-clone'); ?>:</th>
                    <td>
                        <input type="radio" name="custom_header_text_align_vertical" value="middle" <?php if (get_option('wp_clone_custom_header_text_align_vertical') == 'middle') {echo 'checked';}?> /> Middle
                        <input type="radio" name="custom_header_text_align_vertical" value="bottom" <?php if (get_option('wp_clone_custom_header_text_align_vertical') == 'bottom') {echo 'checked';}?> /> Bottom
                        <input type="radio" name="custom_header_text_align_vertical" value="top" <?php if (get_option('wp_clone_custom_header_text_align_vertical') == 'top') {echo 'checked';}?> /> Top
                    </td>
                </tr>
                <tr valign="top">
                    <th scope="row"><?php _e('Custom Header Text Padding', 'wp-clone'); ?>:</th>
                    <td>
                        <input type="number" name="custom_header_text_padding" value="<?php echo get_option('wp_clone_custom_header_text_padding'); ?>" min="0" max="100" step="1" />
                    </td>
                </tr>
                <tr valign="top">
                    <th scope="row"><?php _e('Custom Header Text Background Color', 'wp-clone'); ?>:</th>
                    <td>
                        <input type="color" name="custom_header_text_background_color" value="<?php echo get_option('wp_clone_custom_header_text_background_color'); ?>" />
                    </td>
                </tr>
                <tr valign="top">
                    <th scope="row"><?php _e('Custom Header Text Background Image', 'wp-clone'); ?>:</th>
                    <td>
                        <input type="file" name="custom_header_text_background_image" />
                    </td>
                </tr>
                <tr valign="top">
                    <th scope="row"><?php _e('Custom Header Text Background Image Position', 'wp-clone'); ?>:</th>
                    <td>
                        <input type="number" name="custom_header_text_background_image_position_x" value="<?php echo get_option('wp_clone_custom_header_text_background_image_position_x'); ?>" min="0" max="100" step="1" />
                        <input type="number" name="custom_header_text_background_image_position_y" value="<?php echo get_option('wp_clone_custom_header_text_background_image_position_y'); ?>" min="0" max="100" step="1" />
                    </td>
                </tr>
                <tr valign="top">
                    <th scope="row"><?php _e('Custom Header Text Background Image Scale', 'wp-clone'); ?>:</th>
                    <td>
                        <input type="number" name="custom_header_text_background_image_scale" value="<?php echo get_option('wp_clone_custom_header_text_background_image_scale'); ?>" min="0" max="100" step="1" />
                    </td>
                </tr>
                <tr valign="top">
                    <th scope="row"><?php _e('Custom Header Text Background Image Repeat', 'wp-clone'); ?>:</th>
                    <td>
                        <input type="radio" name="custom_header_text_background_image_repeat" value="repeat" <?php if (get_option('wp_clone_custom_header_text_background_image_repeat') == 'repeat') {echo 'checked';}?> /> Repeat
                        <input type="radio" name="custom_header_text_background_image_repeat" value="no-repeat" <?php if (get_option('wp_clone_custom_header_text_background_image_repeat') == 'no-repeat') {echo 'checked';}?> /> No repeat
                    </td>
                </tr>
                <tr valign="top">
                    <th scope="row"><?php _e('Custom Header Text Background Image Position', 'wp-clone'); ?>:</th>
                    <td>
                        <input type="number" name="custom_header_text_background_image_position_x" value="<?php echo get_option('wp_clone_custom_header_text_background_image_position_x'); ?>" min="0" max="100" step="1" />
                        <input type="number" name="custom_header_text_background_image_position_y" value="<?php echo get_option('wp_clone_custom_header_text_background_image_position_y'); ?>" min="0" max="100" step="1" />
                    </td>
                </tr>
                <tr valign="top">
                    <th scope="row"><?php _e('Custom Header Text Background Image Scale', 'wp-clone'); ?>:</th>
                    <td>
                        <input type="number" name="custom_header_text_background_image_scale" value="<?php echo get_option('wp_clone_custom_header_text_background_image_scale'); ?>" min="0" max="100" step="1" />
                    </td>
                </tr>
                <tr valign="top">
                    <th scope="row"><?php _e('Custom Header Text Background Image Repeat', 'wp-clone'); ?>:</th>
                    <td>
                        <input type="radio" name="custom_header_text_background_image_repeat" value="repeat" <?php if (get_option('wp_clone_custom_header_text_background_image_repeat') == 'repeat') {echo 'checked';}?> /> Repeat
                        <input type="radio" name="custom_header_text_background_image_repeat" value="no-repeat" <?php if (get_option('wp_clone_custom_header_text_background_image_repeat') == 'no-repeat') {echo 'checked';}?> /> No repeat
                    </td>
                </tr>
                <tr valign="top">
                    <th scope="row"><?php _e('Custom Header Text Background Image Position', 'wp-clone'); ?>:</th>
                    <td>
                        <input type="number" name="custom_header_text_background_image_position_x" value="<?php echo get_option('wp_clone_custom_header_text_background_image_position_x'); ?>" min="0" max="100" step="1" />
                        <input type="number" name="custom_header_text_background_image_position_y" value="<?php echo get_option('wp_clone_custom_header_text_background_image_position_y'); ?>" min="0" max="100" step="1" />
                    </td>
                </tr>
                <tr valign="top">
                    <th scope="row"><?php _e('Custom Header Text Background Image Scale', 'wp-clone'); ?>:</th>
                    <td>
                        <input type="number" name="custom_header_text_background_image_scale" value="<?php echo get_option('wp_clone_custom_header_text_background_image_scale'); ?>" min="0" max="100" step="1" />
                    </td>
                </tr>
                <tr valign="top">
                    <th scope="row"><?php _e('Custom Header Text Background Image Repeat', 'wp-clone'); ?>:</th>
                    <td>
                        <input type="radio" name="custom_header_text_background_image_repeat" value="repeat" <?php if (get_option('wp_clone_custom_header_text_background_image_repeat') == 'repeat') {echo 'checked';}?> /> Repeat
                        <input type="radio" name="custom_header_text_background_image_repeat" value="no-repeat" <?php if (get_option('wp_clone_custom_header_text_background_image_repeat') == 'no-repeat') {echo 'checked';}?> /> No repeat
                    </td>
                </tr>
                <tr valign="top">
                    <th scope="row"><?php _e('Custom Header Text Background Image Position', 'wp-clone'); ?>:</th>
                    <td>
                        <input type="number" name="custom_header_text_background_image_position_x" value="<?php echo get_option('wp_clone_custom_header_text_background_image_position_x'); ?>" min="0" max="100" step="1" />
                        <input type="number" name="custom_header_text_background_image_position_y" value="<?php echo get_option('wp_clone_custom_header_text_background_image_position_y'); ?>" min="0" max="100" step="1" />
                    </td>
                </tr>
                <tr valign="top">
                    <th scope="row"><?php _e('Custom Header Text Background Image Scale', 'wp-clone'); ?>:</th>
                    <td>
                        <input type="number" name="custom_header_text_background_image_scale" value="<?php echo get_option('wp_clone_custom_header_text_background_image_scale'); ?>" min="0" max="100" step="1" />
                    </td>
                </tr>
                <tr valign="top">
                    <th scope="row"><?php _e('Custom Header Text Background Image Repeat', 'wp-clone'); ?>:</th>
                    <td>
                        <input type="radio" name="custom_header_text_background_image_repeat" value="repeat" <?php if (get_option('wp_clone_custom_header_text_background_image_repeat') == 'repeat') {echo 'checked';}?> /> Repeat
                        <input type="radio" name="custom_header_text_background_image_repeat" value="no-repeat" <?php if (get_option('wp_clone_custom_header_text_background_image_repeat') == 'no-repeat') {echo 'checked';}?> /> No repeat
                    </td>
                </tr>
                <tr valign="top">
                    <th scope="row"><?php _e('Custom Header Text Background Image Position', 'wp-clone'); ?>:</th>
                    <td>
                        <input type="number" name="custom_header_text_background_image_position_x" value="<?php echo get_option('wp_clone_custom_header_text_background_image_position_x'); ?>" min="0" max="100" step="1" />
                        <input type="number" name="custom_header_text_background_image_position_y" value="<?php echo get_option('wp_clone_custom_header_text_background_image_position_y'); ?>" min="0" max="100" step="1" />
                    </td>
                </tr>
                <tr valign="top">
                    <th scope="row"><?php _e('Custom Header Text Background Image Scale', 'wp-clone'); ?>:</th>
                    <td>
                        <input type="number" name="custom_header_text_background_image_scale" value="<?php echo get_option('wp_clone_custom_header_text_background_image_scale'); ?>" min="0" max="100" step="1" />
                    </td>
                </tr>
                <tr valign="top">
                    <th scope="row"><?php _e('Custom Header Text Background Image Repeat', 'wp-clone'); ?>:</th>
                    <td>
                        <input type="radio" name="custom_header_text_background_image_repeat" value="repeat" <?php if (get_option('wp_clone_custom_header_text_background_image_repeat') == 'repeat') {echo 'checked';}?> /> Repeat
                        <input type