wp plugin refacotr

This commit is contained in:
IGNY8 VPS (Salman)
2025-12-01 06:57:54 +00:00
parent 7357846527
commit 50af3501ac
8 changed files with 602 additions and 55 deletions

View File

@@ -58,6 +58,7 @@ $pending_links = array_filter($link_queue, function($item) {
return $item['status'] === 'pending';
});
$webhook_logs = igny8_get_webhook_logs(array('limit' => 10));
$default_post_status = get_option('igny8_default_post_status', 'draft');
?>
@@ -325,6 +326,34 @@ $webhook_logs = igny8_get_webhook_logs(array('limit' => 10));
<span class="description"><?php _e('Allow editors to update content in WordPress and sync back to IGNY8.', 'igny8-bridge'); ?></span>
</label>
</div>
<div class="automation-block">
<h3><?php _e('Default Post Status for IGNY8 Content', 'igny8-bridge'); ?></h3>
<label>
<input
type="radio"
name="igny8_default_post_status"
value="draft"
<?php checked($default_post_status, 'draft'); ?>
/>
<strong><?php _e('Draft', 'igny8-bridge'); ?></strong>
<span class="description"><?php _e('Save content as draft for review before publishing.', 'igny8-bridge'); ?></span>
</label>
<br />
<label>
<input
type="radio"
name="igny8_default_post_status"
value="publish"
<?php checked($default_post_status, 'publish'); ?>
/>
<strong><?php _e('Publish', 'igny8-bridge'); ?></strong>
<span class="description"><?php _e('Publish content immediately when received from IGNY8.', 'igny8-bridge'); ?></span>
</label>
<p class="description" style="margin-top: 8px;">
<?php _e('Choose whether content published from IGNY8 should be saved as draft or published immediately in WordPress.', 'igny8-bridge'); ?>
</p>
</div>
</div>
<div class="automation-column-right">