Notes sobre el disseny de la pàgina web
29/08/2025 – Albert
He cercat l’arxiu functions.php al cpanel i hi he afegit el següent codi al final:
function prevent_future_type( $post_data ) { if ( $post_data['post_status'] == 'future' && $post_data['post_type'] == 'post' ){ $post_data['post_status'] = 'publish'; } return $post_data; } add_filter('wp_insert_post_data', 'prevent_future_type'); remove_action('future_post', '_future_post_hook');
És possible que quan actualitzem la versió de PHP calgui tornar a fer-ho.
29/08/2025 – Albert
He anat al cpanel i accedit a MyPhpAdmin. Hi he importat una petita base de dades en csv dels compositors (2 files), per fer-hi proves.