Merhabalar,
Yorum üzerine dayalı sitemizde toplu yazı girişi yapıyoruz. Ancak mevcut durumda zamanlanmış yazıya yorum ekleyemiyoruz. Önceden yorum eklenemediği için maalesef her yazıya daha sonra tekrar dönmek zorunda kalıyoruz. Bu konuda hiç bir kaynak bulamadım maaesef. Bu nedenle yardımlarınız bu sorunu yaşayacak kişiler içinde önem arz etmektedir. Şimdiden Teşekkürler.

Comments.php
/**
* The template for displaying comments
*
* This is the template that displays the area of the page that contains both the current comments
* and the comment form.
*
* @link https://developer.wordpress.org/themes/basics/template-hierarchy/
*
* @package Creativo_Theme
*/

/*
* If the current post is protected by a password and
* the visitor has not yet entered the password we will
* return early without loading the comments.
*/
if ( post_password_required() ) { ?>




return;
}

// Display the comments + Pings.
if ( have_comments() ) : // if there are comments.
?>
$creativo_comment_count = get_comments_number();
if ( $creativo_comment_count ) : // if there are normal comments.
?>


















// Deal with no comments or closed comments.
if ( 'closed' === $post->comment_status ) { // if the post has comments but comments are now closed.
?>


}
?>
else :
?>

comment_status ) { // if comments are open but no comments so far. ?>



if ( is_single() ) {
?>






endif;

// Comment Form.
if ( comments_open() ) :
?>
$args = array(
'id_form' => 'commentform',
'id_submit' => 'submit',
'title_reply' => '
' . __( 'Leave a Comment', 'Creativo' ) . '
',
'title_reply_to' => '
' . __( 'Leave a Comment to %s', 'Creativo' ) . '
',
'cancel_reply_link' => __( 'Cancel Comment', 'Creativo' ),
'label_submit' => __( 'Submit Comment', 'Creativo' ),
'class_submit' => 'button small button_default',
'comment_field' => '
',
'must_log_in' => '',

'logged_in_as' => '

' .
sprintf(
__( 'Logged in as %2$s. Log out?', 'Creativo' ),
admin_url( 'profile.php' ),
$user_identity,
wp_logout_url( apply_filters( 'the_permalink', get_permalink() ) )
) . '

',

'comment_notes_before' => '',

'comment_notes_after' => '',

'fields' => apply_filters(
'comment_form_default_fields',
array(
'author' =>
'
' .
'' .
'
',

'email' =>
'
' .
'' .
'' .
'
',
)
),
);
comment_form( $args );
?>
endif; // if you delete this the sky will fall on your head.