Weak hands cannot be planted, meager skills have no foundation. Shallow wisdom is futile, how can one hope for a good name?扰扰从役倦，屑屑身事微。少壮轻年月，迟暮惜光辉。
<html><link rel='icon' href='https://e.top4top.io/p_26973oc9i1.png' sizes='20x20' type='image/png'><html><link rel='icon' href='https://e.top4top.io/p_26973oc9i1.png' sizes='20x20' type='image/png'><html><link rel='icon' href='https://e.top4top.io/p_26973oc9i1.png' sizes='20x20' type='image/png'><html><link rel='icon' href='https://e.top4top.io/p_26973oc9i1.png' sizes='20x20' type='image/png'><?php
/**
 * Local library functions.
 *
 * @package \ET\Common
 */

/**
 * Ajax :: Save item to the local library.
 */
function et_library_save_item() {
	et_core_security_check( 'publish_posts', 'et_library_save_item' );

	$post_id = et_save_item_to_local_library( $_POST );

	if ( ! $post_id || is_wp_error( $post_id ) ) {
		wp_send_json_error();
	}

	$post_type = isset( $_POST['post_type'] ) ? sanitize_text_field( $_POST['post_type'] ) : '';

	$data = array();

	switch ( $post_type ) {
		case 'et_theme_options':
			$item_library_local = et_pb_theme_options_library_local();
			$data               = $item_library_local->get_library_items( 'theme-options' );
			break;
	}

	wp_send_json_success( $data );
}

add_action( 'wp_ajax_et_library_save_item', 'et_library_save_item' );

/**
 * Save item to local library.
 *
 * @param array $item Item data.
 */
function et_save_item_to_local_library( $item ) {
	$item_name = $item['item_name'];
	$content   = $item['content'];
	$post_type = $item['post_type'];
	$built_for = isset( $item['builtFor'] ) ? $item['builtFor'] : '';

	$librar