: str_replace(): Passing null to parameter #2 ($replace) of type array|string is deprecated in
if( !defined('ABSPATH') ){ exit();}
add_action( 'add_meta_boxes', 'xyz_twap_add_custom_box' );
function xyz_twap_add_custom_box()
if(isset($_GET['post_type']))
$posttype=$_GET['post_type'];
if(isset($_GET['action']) && $_GET['action']=="edit" && !empty($_GET['post'])) /// empty check added for fixing client scenario
$postid=intval($_GET['post']);
$get_post_meta=get_post_meta($postid,"xyz_twap",true);
$accountCount = $wpdb->query($wpdb->prepare( 'SELECT * FROM '.$wpdb->prefix.$table.' WHERE id=%d and post_status!=%s LIMIT %d,%d',array($postid,'draft',0,1) )) ;
$posttype=get_post_type($postid);
$xyz_twap_include_pages=get_option('xyz_twap_include_pages');
if($xyz_twap_include_pages==0)
else if($posttype=="post")
$xyz_twap_include_posts=get_option('xyz_twap_include_posts');
if($xyz_twap_include_posts==0)
else if($posttype!="post")
$xyz_twap_include_customposttypes=get_option('xyz_twap_include_customposttypes');
$carr=explode(',', $xyz_twap_include_customposttypes);
if(!in_array($posttype,$carr))
$xyz_twap_tw_app_sel_mode=get_option('xyz_twap_tw_app_sel_mode');
$xyz_twap_smapsoln_userid=get_option('xyz_twap_smapsoln_userid');
if(((get_option('xyz_twap_twconsumer_id')!="" && get_option('xyz_twap_twconsumer_secret')!="" && get_option('xyz_twap_tw_id')!="" && get_option('xyz_twap_current_twappln_token')!="" && get_option('xyz_twap_twaccestok_secret')!="" && $xyz_twap_tw_app_sel_mode==0 )|| ( $xyz_twap_tw_app_sel_mode==1 && !empty($xyz_twap_smapsoln_userid))) && get_option('xyz_twap_twpost_permission')==1)
add_meta_box( "xyz_twap", '<strong>WP Twitter Auto Publish </strong>', 'xyz_twap_addpostmetatags') ;
function xyz_twap_addpostmetatags()
$imgpath= plugins_url()."/twitter-auto-publish/images/";
$heimg=$imgpath."support.png";
$xyz_twap_catlist=get_option('xyz_twap_include_categories');
// if (is_array($xyz_twap_catlist))
// $xyz_twap_catlist=implode(',', $xyz_twap_catlist);
function displaycheck_twap()
var tcheckid=jQuery("input[name='xyz_twap_twpost_permission']:checked").val();
document.getElementById("twmf_twap").style.display='';
document.getElementById("twmftarea_twap").style.display='';
document.getElementById("twai_twap").style.display='';
document.getElementById("twmf_twap").style.display='none';
document.getElementById("twmftarea_twap").style.display='none';
document.getElementById("twai_twap").style.display='none';
<script type="text/javascript">
function detdisplay_twap(id)
document.getElementById(id).style.display='';
function dethide_twap(id)
document.getElementById(id).style.display='none';
jQuery(document).ready(function() {
var xyz_twap_twpost_permission=jQuery("input[name='xyz_twap_twpost_permission']:checked").val();
XyzTwapToggleRadio(xyz_twap_twpost_permission,'xyz_twap_twpost_permission');
var wp_version='<?php echo XYZ_TWAP_WP_VERSION; ?>';
if (wp_version <= '5.3') {
jQuery('#category-all').bind("DOMSubtreeModified",function(){
twap_get_categorylist(1);
twap_get_categorylist(1);twap_get_categorylist(2);
jQuery('#category-all').on("click",'input[name="post_category[]"]',function() {
twap_get_categorylist(1);
jQuery('#category-pop').on("click",'input[type="checkbox"]',function() {
twap_get_categorylist(2);
/////////gutenberg category selection
jQuery(document).on('change', 'input[type="checkbox"]', function() {
twap_get_categorylist(2);
/****************** Code to reload metabox content in Gutenberg editor ******************/
jQuery(document).ready(function($) {
const appuntiStatusChange = ( function(){
const isSavingMetaBoxes = wp.data.select( 'core/edit-post' ).isSavingMetaBoxes;
refreshMetabox: function(){
var isSaving = isSavingMetaBoxes();
if ( wasSaving && ! isSaving ) {
//console.log("Post changed and saved.");
var xyz_twap_default_selection_edit="<?php echo esc_html(get_option('xyz_twap_default_selection_edit'));?>";
if(xyz_twap_default_selection_edit==0 && jQuery("input[name='xyz_twap_twpost_permission']:checked").val()==1) {
document.getElementById("twmf_twap").style.display='none';
document.getElementById("twmftarea_twap").style.display='none';
document.getElementById("twai_twap").style.display='none';
jQuery('#xyz_twap_twpost_permission_0').prop('checked',true);
jQuery('#xyz_twap_twpost_permission_yes').removeClass('xyz_twap_toggle_on');
jQuery('#xyz_twap_twpost_permission_yes').addClass('xyz_twap_toggle_off');
jQuery('#xyz_twap_twpost_permission_no').removeClass('xyz_twap_toggle_off');
jQuery('#xyz_twap_twpost_permission_no').addClass('xyz_twap_toggle_on');
else if(xyz_twap_default_selection_edit==1 && jQuery("input[name='xyz_twap_twpost_permission']:checked").val()==0) {
document.getElementById("twmf_twap").style.display='';
document.getElementById("twmftarea_twap").style.display='';
document.getElementById("twai_twap").style.display='';
jQuery('#xyz_twap_twpost_permission_1').prop('checked',true);
jQuery('#xyz_twap_twpost_permission_no').removeClass('xyz_twap_toggle_on');
jQuery('#xyz_twap_twpost_permission_no').addClass('xyz_twap_toggle_off');
jQuery('#xyz_twap_twpost_permission_yes').removeClass('xyz_twap_toggle_off');
jQuery('#xyz_twap_twpost_permission_yes').addClass('xyz_twap_toggle_on');
wp.data.subscribe( appuntiStatusChange.refreshMetabox );
/*************************************************************************************/
function twap_get_categorylist(val)
var cat_list="";var chkdArray=new Array();var cat_list_array=new Array();
var posttype="<?php echo get_post_type() ;?>";
jQuery('input[name="post_category[]"]:checked').each(function() {
cat_list+=this.value+",";flag=false;
jQuery('#category-pop input[type="checkbox"]:checked').each(function() {
cat_list+=this.value+",";flag=false;
jQuery('.editor-post-taxonomies__hierarchical-terms-choice input[type="checkbox"]:checked').each(function() { //gutenberg category checkbox
cat_list+=this.value+",";flag=false;
if (isset($_GET['post']))
$postid=intval($_GET['post']);
if (isset($GLOBALS['edit_flag']) && $GLOBALS['edit_flag']==1 && !empty($postid)){
$defaults = array('fields' => 'ids');
$categ_arr=wp_get_post_categories( $postid, $defaults );
$categ_str=implode(',', $categ_arr);
cat_list+='<?php echo $categ_str; ?>';
if (cat_list.charAt(cat_list.length - 1) == ',') {
cat_list = cat_list.substr(0, cat_list.length - 1);
jQuery('#cat_list').val(cat_list);
var xyz_twap_catlist="<?php echo $xyz_twap_catlist;?>";
if(xyz_twap_catlist!="All")
cat_list_array=xyz_twap_catlist.split(',');
var chkdcatvals=jQuery('#cat_list').val();
chkdArray=chkdcatvals.split(',');
for(var x=0;x<chkdArray.length;x++) {
if(inArray(chkdArray[x], cat_list_array))
if(show_flag==0 && posttype=="post")
jQuery('#xyz_twMetabox').hide();
jQuery('#xyz_twMetabox').show();
function inArray(needle, haystack) {
var length = haystack.length;
for(var i = 0; i < length; i++) {
if(haystack[i] == needle) return true;
<table class="xyz_twap_metalist_table">
<input type="hidden" name="cat_list" id="cat_list" value="">
<input type="hidden" name="xyz_twap_post" id="xyz_twap_post" value="0" >
<tr id="xyz_twMetabox"><td colspan="2" >
$taccess_token_secret=get_option('xyz_twap_twaccestok_secret');
$xyz_twap_tw_app_sel_mode=get_option('xyz_twap_tw_app_sel_mode');
$xyz_twap_smapsoln_userid=get_option('xyz_twap_smapsoln_userid');
if(get_option('xyz_twap_twpost_permission')==1 && ( ($xyz_twap_tw_app_sel_mode==1 && !empty($xyz_twap_smapsoln_userid)) || ($xyz_twap_tw_app_sel_mode==0 && !empty($taccess_token_secret)))) {
if (isset($_GET['post']))
$postid=intval($_GET['post']);
$get_post_meta_future_data='';
if (get_option('xyz_twap_default_selection_edit')==2 && isset($GLOBALS['edit_flag']) && $GLOBALS['edit_flag']==1 && !empty($postid))
$get_post_meta_future_data=get_post_meta($postid,"xyz_twap_future_to_publish",true);
if (!empty($get_post_meta_future_data)&& isset($get_post_meta_future_data['xyz_twap_twpost_permission']))
$post_permission=$get_post_meta_future_data['xyz_twap_twpost_permission'];
$post_twitter_image_permission=$get_post_meta_future_data['xyz_twap_twpost_image_permission'];
$messagetopost=$get_post_meta_future_data['xyz_twap_twmessage'];
$post_twitter_image_permission=get_option('xyz_twap_twpost_image_permission');
$messagetopost=get_option('xyz_twap_twmessage');
<table class="xyz_twap_meta_acclist_table"><!-- TW META -->
<td colspan="2" class="xyz_twap_pleft15 xyz_twap_meta_acclist_table_td"><strong><?php _e('Twitter','twitter-auto-publish'); ?></strong>
<tr><td colspan="2" valign="top"> </td></tr>
<td class="xyz_twap_pleft15" width="60%"><?php _e('Enable auto publish posts to my twitter account','twitter-auto-publish'); ?>
<td class="switch-field">
<label id="xyz_twap_twpost_permission_yes"><input type="radio" name="xyz_twap_twpost_permission" id="xyz_twap_twpost_permission_1" value="1" <?php if($post_permission==1) echo 'checked';?>/><?php _e('Yes','twitter-auto-publish'); ?></label>
<label id="xyz_twap_twpost_permission_no"><input type="radio" name="xyz_twap_twpost_permission" id="xyz_twap_twpost_permission_0" value="0" <?php if($post_permission==0) echo 'checked';?>/><?php _e('No','twitter-auto-publish'); ?></label>
<tr valign="top" id="twai_twap">
<td class="xyz_twap_pleft15"> <?php _e('Attach image to twitter post','twitter-auto-publish'); ?>
<td><select id="xyz_twap_twpost_image_permission" name="xyz_twap_twpost_image_permission">
<?php if($post_twitter_image_permission==0) echo 'selected';?>>
<?php _e('No','twitter-auto-publish'); ?></option>
<?php if($post_twitter_image_permission==1) echo 'selected';?>><?php _e('Yes','twitter-auto-publish'); ?></option>
<tr valign="top" id="twmf_twap">
<td class="xyz_twap_pleft15"> <?php _e('Message format for posting','twitter-auto-publish'); ?><img src="<?php echo $heimg?>"
onmouseover="detdisplay_twap('xyz_twap_informationdiv')" onmouseout="dethide_twap('xyz_twap_informationdiv')" style="width:13px;height:auto;">
<div id="xyz_twap_informationdiv" class="twap_informationdiv"
style="display: none; font-weight: normal;">
{POST_TITLE} - <?php _e('Insert the title of your post.','twitter-auto-publish'); ?><br/>
{PERMALINK} - <?php _e('Insert the URL where your post is displayed.','twitter-auto-publish'); ?><br/>
{POST_EXCERPT} - <?php _e('Insert the excerpt of your post.','twitter-auto-publish'); ?><br/>
{POST_CONTENT} - <?php _e('Insert the description of your post.','twitter-auto-publish'); ?><br/>
{BLOG_TITLE} - <?php _e('Insert the name of your blog.','twitter-auto-publish'); ?><br/>
{USER_NICENAME} - <?php _e('Insert the nicename of the author.','twitter-auto-publish'); ?><br/>
{POST_ID} - <?php _e('Insert the ID of your post.','twitter-auto-publish'); ?><br/>
{POST_PUBLISH_DATE} - <?php _e('Insert the publish date of your post.','twitter-auto-publish'); ?><br/>
{USER_DISPLAY_NAME} - <?php _e('Insert the display name of the author.','twitter-auto-publish'); ?>
<select name="xyz_twap_info" id="xyz_twap_info" onchange="xyz_twap_info_insert(this)">
<option value ="0" selected="selected"> --<?php _e('Select','twitter-auto-publish'); ?>-- </option>
<option value ="1">{POST_TITLE} </option>
<option value ="2">{PERMALINK} </option>
<option value ="3">{POST_EXCERPT} </option>
<option value ="4">{POST_CONTENT} </option>
<option value ="5">{BLOG_TITLE} </option>
<option value ="6">{USER_NICENAME} </option>
<option value ="7">{POST_ID} </option>
<option value ="8">{POST_PUBLISH_DATE} </option>
<option value ="9">{USER_DISPLAY_NAME} </option>
<tr id="twmftarea_twap"><td> </td><td>
<textarea id="xyz_twap_twmessage" name="xyz_twap_twmessage" style="height:80px !important;" ><?php echo esc_textarea($messagetopost);?></textarea>
<script type="text/javascript">
var edit_flag="<?php echo $GLOBALS['edit_flag'];?>";
function load_edit_action()
document.getElementById("xyz_twap_post").value=1;
var xyz_twap_default_selection_edit="<?php echo esc_html(get_option('xyz_twap_default_selection_edit'));?>";
if(xyz_twap_default_selection_edit=="")
xyz_twap_default_selection_edit=0;
if(xyz_twap_default_selection_edit==1 || xyz_twap_default_selection_edit==2)
jQuery('#xyz_twap_twpost_permission_0').attr('checked',true);
function load_create_action()
document.getElementById("xyz_twap_post").value=1;
var xyz_twap_default_selection_create="<?php echo esc_html(get_option('xyz_twap_default_selection_create'));?>";
if(xyz_twap_default_selection_create=="")
xyz_twap_default_selection_create=0;
if(xyz_twap_default_selection_create==1)
jQuery('#xyz_twap_twpost_permission_0').attr('checked',true);
function xyz_twap_info_insert(inf){
var e = document.getElementById("xyz_twap_info");
var ins_opt = e.options[e.selectedIndex].text;
var str=jQuery("textarea#xyz_twap_twmessage").val()+ins_opt;
jQuery("textarea#xyz_twap_twmessage").val(str);
jQuery('#xyz_twap_info :eq(0)').prop('selected', true);
jQuery("textarea#xyz_twap_twmessage").focus();
jQuery("#xyz_twap_twpost_permission_no").click(function(){
XyzTwapToggleRadio(0,'xyz_twap_twpost_permission');
jQuery("#xyz_twap_twpost_permission_yes").click(function(){
XyzTwapToggleRadio(1,'xyz_twap_twpost_permission');