As is documented in the site update log, for a while we had a problem with our theme where it wasn’t possible to reply to a comment so that the reply would appear correctly in a threaded way. We have no fixed this problem, but have been left with a significant number of comments which really need editing so it is easier to see what they are in reply to. With a standard wordpress install this requires going into the database and editing there, which is very tedious. Instead, we’ve used some simple functions to add an option to the comment-edit admin page, to set the comment parent there. Eventually this will be developed into a proper plugin to enable this functionality. For now the code is below, صرف اپنے تھیم کی functions.php میں شامل کریں
function comment_parent_meta_box() { add_meta_box( 'comment_parent', __( 'Parent ID' ), 'comment_parent_cb', 'تبصرہ', 'normal', 'high' ); } ADD_ACTION( 'add_meta_boxes_comment', 'comment_parent_meta_box' ); function comment_parent_cb( $تبصرہ ) { $parent = get_comment_meta( $comment->comment_ID, 'comment_parent', سچ ہے ); wp_nonce_field( 'parent_comment_update', 'parent_comment_update', جھوٹے ); ?> ?پی ایچ پی } function comment_parent_edit( $comment_id ) { اگر( ! isset( $_POST['parent_comment_update'] ) || ! wp_verify_nonce( $_POST['parent_comment_update'], 'parent_comment_update' ) ) return; اگر( isset( $_POST['comment_parent'] ) ) update_comment_meta( $comment_id, 'comment_parent', esc_attr( $_POST['comment_parent'] ) ); } ADD_ACTION( 'edit_comment', 'comment_parent_edit' );
ذیل میں تبصرہ کی طرف سے ہمیں اپنے خیالات بھیجیں کریں! آپ کے سبسکرائب کرنا چاہتے ہیں تو سب سے اوپر دائیں مینو پر لنک سبسکرائب استعمال کریں. آپ بھی ذیل سماجی روابط کا استعمال کرتے ہوئے کی طرف سے اپنے دوستوں کے ساتھ اس کا اشتراک کر سکتے ہیں. چیرس.
جواب چھوڑیں