feat(admin): WordPress→DB sync for scheduled slots
Adds sync_db_from_wordpress() that treats WordPress as source of truth: - future posts: update scheduled_publish_at to WP's actual date - draft posts: clear scheduled_publish_at (not yet scheduled) - published posts: mark article as 'published' in DB - trashed/deleted posts: clear wp_post_id + wp_post_url + slot so article can be re-processed Exposed via POST /admin/wp-sync with a sync button on the schedule page. Run after any manual rescheduling in WordPress to bring DB back in sync. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
parent
8676ace102
commit
2d02b56b65
3 changed files with 160 additions and 0 deletions
|
|
@ -37,6 +37,16 @@
|
|||
</section>
|
||||
{% endif %}
|
||||
|
||||
<section class="card" style="display:flex;align-items:center;justify-content:space-between;flex-wrap:wrap;gap:1rem;">
|
||||
<div>
|
||||
<h2 style="margin:0;">WordPress → DB Synchronisieren</h2>
|
||||
<p class="subtle" style="margin:4px 0 0;">Liest alle geplanten WP-Beiträge und aktualisiert die Slots in der lokalen DB.<br>Nutze dies nach manuellen Änderungen in WordPress.</p>
|
||||
</div>
|
||||
<form method="post" action="/admin/wp-sync">
|
||||
<button type="submit">🔄 Jetzt synchronisieren</button>
|
||||
</form>
|
||||
</section>
|
||||
|
||||
<section class="card">
|
||||
<h2>Slot-Übersicht (nächste 60 Tage)</h2>
|
||||
<div class="summary-bar">
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue