Faizan Ali
Bro, add bulk edit to add/remove links to episodes. I have such a plugin on the old dooplay version
"php
/*
* Plugin Name: Bulk Edit - Episodes
*/
// register
$global_url = "https://site.com";
define("BP_INPUTS",2);
define("BP_URL","https://site.com");
add_filter( 'bulk_actions-edit-episodes', 'register_add_auto_forms' );
function register_add_auto_forms($bulk_actions) {
$bulk_actions['edit_video_url'] = __( 'Edit Video Url', 'bulkeditepisodes');
return $bulk_actions;
}
add_filter( 'handle_bulk_actions-edit-episodes', 'add_auto_forms_handler', 10, 3 );
function add_auto_forms_handler( $redirect_to, $doaction, $post_ids ) {
if ( $doaction !== 'edit_video_url' ) {
return $redirect_to;
}
if(count($post_ids) > 0) {
$ids = generate_ids($post_ids);
return BP_URL."/wp-admin/admin.php?page=bulkeditvp&ids=".$ids;
}
}
function generate_ids($post_ids) {
$str = "";
foreach($post_ids as $k=>$v) {
$str .= ",".$v;
}
return substr($str, 1);
}
function my_admin_menu() {
add_menu_page(
__( 'Bulk Edit VP', 'my-textdomain' ),
__( 'Bulk Edit VP', 'my-textdomain' ),
'manage_options',
'bulkeditvp',
'my_admin_page_bulkeditvp',
'dashicons-schedule',
100
);
}
add_action( 'admin_menu', 'my_admin_menu' );
function my_admin_page_bulkeditvp() {
global $wpdb;
?>
<style>
.list_bulk_episodes article {
background: #fff;
padding: 20px;
display: flex;
margin-bottom: 10px;
flex-direction: column;
max-width: 500px;
}
.list_bulk_episodes article span { font-weight: 600; color: #000; }
.list_bulk_episodes article input {
margin-top: 10px;
height: 35px;
border: 1px solid #eee;
border-radius: 2px;
line-height: 35px;
}
.list_bulk_episodes .message {
max-width: 500px;
background: green;
color: #fff;
padding: 25px;
border-radius: 2px;
margin-bottom: 30px;
}
</style>
<h1>
<?php esc_html_e( 'Edit Episodes Link.', 'my-plugin-textdomain' ); ?>
</h1>
<div class="list_bulk_episodes">
<?php
// UPDATE AND SAVE
if(isset($_POST['save'])) {
unset($_POST['save']);
foreach($_POST['items'] as $k=>$v) {
$details = array();
foreach($v as $kk=>$vv) {
if(!empty($vv)) {
$details[$kk] = array(
"name" => "Гледай",
"select" => "iframe",
"idioma" => "",
"url" => $vv,
);
}
}
$uns = serialize($details);
$post_id = $wpdb->get_results("SELECT * FROM wp_postmeta WHERE post_id='$k' AND meta_key='repeatable_fields'");
if(count($post_id) == 0) {
$wpdb->query($wpdb->prepare("INSERT INTO wp_postmeta (meta_value,meta_key,post_id) VALUES (%s,%s,%d)",$uns,'repeatable_fields',$k));
}
else {
$wpdb->query($wpdb->prepare("UPDATE wp_postmeta SET meta_value='$uns' WHERE post_id='$k' AND meta_key='repeatable_fields'"));
}
}
?>
<div class="message">The links have been successfully updated</div>
<?php
}
if(!isset($_GET['ids'])) {
echo 'Please select episodes about edit. <a href="'.BP_URL.'/wp-admin/edit.php?post_type=episodes">View all episodes</a>';
}
else {
?>
<form action="" method="POST">
<?php
$ids = explode(",", $_GET['ids']);
$i = 1;
foreach($ids as $k=>$v) {
$get = get_post_meta($v,"repeatable_fields",true);
?>
<article>
<span><?php echo "#".$i .' ' . get_the_title($v); ?></span>
<?php
for($ii=0;$ii<=BP_INPUTS;$ii++) {
$value = (!empty($get[$ii]['url'])) ? $get[$ii]['url'] : "";
?>
<input type="text" value="<?php echo $value; ?>" name="items[<?php echo $v; ?>][<?php echo $ii; ?>]" placeholder="Url">
<?php } ?>
</article>
<?php
$i++;
}
?>
<input name="save" type="submit" class="button button-primary button-large" id="publish" value="Save all Episodes ">
</form>
<?php
}
echo '</div>';
}
function trace($data) {
echo '<pre>';
print_r($data);
echo '</pre>';
}"
from there define("BP_INPUTS",2); u can set how embed links to add per episode 2/3/4/5
If u select 10 episodes for bulk edit, and u set bp_inputs to 3 for example, u can add 3 embed links per each episode
create folder and index.php in themes/plugins , paste that code, then activate the plugin and u will see "Bulk Edit" button in your wordpress or something... Then u can select multiple episodes and change their embed codes.