/**
* Manuelles Aktualisieren des News-Tabs für alle Profile
* Diese Funktion kann in der Admin-Oberfläche aufgerufen werden
*/
public function update_all_news_tabs() {
global $wpdb;
// Fehlerbehandlung aktivieren
try {
// Alle Profile abrufen
$profiles = get_posts(array(
'post_type' => 'vip_profile',
'numberposts' => -1,
'post_status' => 'publish'
));
if (empty($profiles)) {
error_log('VIP Database: Keine Profile gefunden zum Aktualisieren.');
return 0;
}
$updated_count = 0;
// Frontend-Klasse instanziieren für Fallback-Inhalte
if (!class_exists('VIP_Database_Frontend')) {
require_once VIP_DB_PLUGIN_DIR . 'includes/class-vip-database-frontend.php';
}
$frontend = new VIP_Database_Frontend();
foreach ($profiles as $profile) {
$profile_id = $profile->ID;
if (empty($profile_id)) {
continue;
}
// Aktuellen News-Inhalt abrufen
$content = $this->get_profile_content($profile_id, 'news');
// Profil-Daten abrufen
$first_name = get_post_meta($profile_id, '_vip_first_name', true);
$last_name = get_post_meta($profile_id, '_vip_last_name', true);
$full_name = trim($first_name . ' ' . $last_name);
if (empty($full_name)) {
$full_name = get_the_title($profile_id);
}
// Kategorie abrufen
$categories = wp_get_post_terms($profile_id, 'vip_category');
$category = !empty($categories) && !is_wp_error($categories) ? $categories[0]->name : '';
if (!empty($content)) {
// Überprüfen, ob der Inhalt bereits HTML-Formatierung hat
if (strpos($content, '
' . sprintf(__('Aktuelle Neuigkeiten über %s', 'vip-database'), $full_name) . '
' . $content;
}
// Stellen Sie sicher, dass der Text in Absätze gegliedert ist
if (strpos($content, '') === false) {
$content = wpautop($content);
}
} else {
// Wenn kein Inhalt vorhanden ist, Fallback-Inhalt erstellen
if (method_exists($frontend, 'generate_fallback_content')) {
$content = $frontend->generate_fallback_content($full_name, $category, 'news');
} else {
// Einfacher Fallback, falls die Methode nicht existiert
$current_date = date('d.m.Y');
$content = "
Aktuelle Neuigkeiten zu {$full_name}
{$current_date}
Aktuelle Neuigkeiten zu {$full_name} werden in Kürze hier veröffentlicht.
";
}
}
// Speichern Sie den formatierten Inhalt
$save_result = $this->save_profile_content($profile_id, 'news', $content);
if ($save_result) {
$updated_count++;
}
}
return $updated_count;
} catch (Exception $e) {
error_log('VIP Database Error: ' . $e->getMessage());
return 0;
}
}
1.0Gingohttps://gingoo.deGingohttps://gingoo.deMicron Technology blickt überraschend optimistisch aufs d…rich600338<blockquote class="wp-embedded-content" data-secret="WcMXETDdoj"><a href="https://gingoo.de/micron-technology-blickt-ueberraschend-optimistisch-aufs-d/">Micron Technology blickt überraschend optimistisch aufs d…</a></blockquote><iframe sandbox="allow-scripts" security="restricted" src="https://gingoo.de/micron-technology-blickt-ueberraschend-optimistisch-aufs-d/embed/#?secret=WcMXETDdoj" width="600" height="338" title="„Micron Technology blickt überraschend optimistisch aufs d…“ — Gingo" data-secret="WcMXETDdoj" frameborder="0" marginwidth="0" marginheight="0" scrolling="no" class="wp-embedded-content"></iframe><script>
/**
* WordPress inline HTML embed
*
* @since 4.4.0
* @output wp-includes/js/wp-embed.js
*
* Single line comments should not be used since they will break
* the script when inlined in get_post_embed_html(), specifically
* when the comments are not stripped out due to SCRIPT_DEBUG
* being turned on.
*/
(function ( window, document ) {
'use strict';
/* Abort for ancient browsers. */
if ( ! document.querySelector || ! window.addEventListener || typeof URL === 'undefined' ) {
return;
}
/** @namespace wp */
window.wp = window.wp || {};
/* Abort if script was already executed. */
if ( !! window.wp.receiveEmbedMessage ) {
return;
}
/**
* Receive embed message.
*
* @param {MessageEvent} e
*/
window.wp.receiveEmbedMessage = function( e ) {
var data = e.data;
/* Verify shape of message. */
if (
! ( data || data.secret || data.message || data.value ) ||
/[^a-zA-Z0-9]/.test( data.secret )
) {
return;
}
var iframes = document.querySelectorAll( 'iframe[data-secret="' + data.secret + '"]' ),
blockquotes = document.querySelectorAll( 'blockquote[data-secret="' + data.secret + '"]' ),
allowedProtocols = new RegExp( '^https?:$', 'i' ),
i, source, height, sourceURL, targetURL;
for ( i = 0; i < blockquotes.length; i++ ) {
blockquotes[ i ].style.display = 'none';
}
for ( i = 0; i < iframes.length; i++ ) {
source = iframes[ i ];
if ( e.source !== source.contentWindow ) {
continue;
}
source.removeAttribute( 'style' );
if ( 'height' === data.message ) {
/* Resize the iframe on request. */
height = parseInt( data.value, 10 );
if ( height > 1000 ) {
height = 1000;
} else if ( ~~height < 200 ) {
height = 200;
}
source.height = height;
} else if ( 'link' === data.message ) {
/* Link to a specific URL on request. */
sourceURL = new URL( source.getAttribute( 'src' ) );
targetURL = new URL( data.value );
if (
allowedProtocols.test( targetURL.protocol ) &&
targetURL.host === sourceURL.host &&
document.activeElement === source
) {
window.top.location.href = data.value;
}
}
}
};
function onLoad() {
var iframes = document.querySelectorAll( 'iframe.wp-embedded-content' ),
i, source, secret;
for ( i = 0; i < iframes.length; i++ ) {
/** @var {IframeElement} */
source = iframes[ i ];
secret = source.getAttribute( 'data-secret' );
if ( ! secret ) {
/* Add secret to iframe */
secret = Math.random().toString( 36 ).substring( 2, 12 );
source.src += '#?secret=' + secret;
source.setAttribute( 'data-secret', secret );
}
/*
* Let post embed window know that the parent is ready for receiving the height message, in case the iframe
* loaded before wp-embed.js was loaded. When the ready message is received by the post embed window, the
* window will then (re-)send the height message right away.
*/
source.contentWindow.postMessage( {
message: 'ready',
secret: secret
}, '*' );
}
}
window.addEventListener( 'message', window.wp.receiveEmbedMessage, false );
document.addEventListener( 'DOMContentLoaded', onLoad, false );
})( window, document );
</script>
https://gingoo.de/wp-content/uploads/2025/03/gb06180113296c9a9d641e343b70f28f4f2b2f79005581310fc8588be42b6cc4c2f1012f8f3ae9fd1e958c9c20128655ea8dfd8b52d373e4da34abbb73c5e6c4a_1280-768x512.jpg600400