class-activation.php
1 year ago
class-admin-menu-organizer.php
1 year ago
class-auto-publish-posts-with-missed-schedule.php
1 year ago
class-avif-upload.php
1 year ago
class-captcha-protection.php
1 year ago
class-change-login-url.php
1 year ago
class-cleanup-admin-bar.php
1 year ago
class-common-methods.php
1 year ago
class-content-duplication.php
1 year ago
class-content-order.php
1 year ago
class-custom-admin-footer-text.php
1 year ago
class-custom-body-class.php
1 year ago
class-custom-css.php
1 year ago
class-custom-nav-menu-items-in-new-tab.php
1 year ago
class-deactivation.php
1 year ago
class-disable-comments.php
1 year ago
class-disable-dashboard-widgets.php
1 year ago
class-disable-feeds.php
1 year ago
class-disable-gutenberg.php
1 year ago
class-disable-rest-api.php
1 year ago
class-disable-smaller-components.php
1 year ago
class-disable-updates.php
1 year ago
class-disable-xml-rpc.php
1 year ago
class-display-system-summary.php
1 year ago
class-email-address-obfuscator.php
1 year ago
class-email-delivery.php
1 year ago
class-enhance-list-tables.php
1 year ago
class-external-permalinks.php
1 year ago
class-heartbeat-control.php
1 year ago
class-hide-admin-bar.php
1 year ago
class-hide-admin-notices.php
1 year ago
class-image-sizes-panel.php
1 year ago
class-image-upload-control.php
1 year ago
class-insert-head-body-footer-code.php
1 year ago
class-last-login-column.php
1 year ago
class-limit-login-attempts.php
1 year ago
class-login-id-type.php
1 year ago
class-login-logout-menu.php
1 year ago
class-maintenance-mode.php
1 year ago
class-manage-ads-appads-txt.php
1 year ago
class-manage-robots-txt.php
1 year ago
class-media-replacement.php
1 year ago
class-multiple-user-roles.php
1 year ago
class-obfuscate-author-slugs.php
1 year ago
class-open-external-links-in-new-tab.php
1 year ago
class-password-protection.php
1 year ago
class-redirect-after-login.php
1 year ago
class-redirect-after-logout.php
1 year ago
class-redirect-fourofour.php
1 year ago
class-registration-date-column.php
1 year ago
class-revisions-control.php
1 year ago
class-search-engines-visibility.php
1 year ago
class-settings-fields-render.php
1 year ago
class-settings-sanitization.php
1 year ago
class-settings-sections-fields.php
1 year ago
class-show-custom-taxonomy-filters.php
1 year ago
class-site-identity-on-login-page.php
1 year ago
class-svg-upload.php
1 year ago
class-various-admin-ui-enhancements.php
1 year ago
class-view-admin-as-role.php
1 year ago
class-wider-admin-menu.php
1 year ago
class-wp-config-transformer.php
1 year ago
class-disable-comments.php
192 lines
| 1 | <?php |
| 2 | |
| 3 | namespace ASENHA\Classes; |
| 4 | |
| 5 | /** |
| 6 | * Class for Disable Comments module |
| 7 | * |
| 8 | * @since 6.9.5 |
| 9 | */ |
| 10 | class Disable_Comments { |
| 11 | /** |
| 12 | * Disable comments for post types |
| 13 | * |
| 14 | * @since 2.7.0 |
| 15 | */ |
| 16 | public function disable_comments_for_post_types_edit() { |
| 17 | $options = get_option( ASENHA_SLUG_U ); |
| 18 | $disable_comments_type = 'only-on'; |
| 19 | $disable_comments_for = $options['disable_comments_for']; |
| 20 | foreach ( $disable_comments_for as $post_type_slug => $is_post_type_checked ) { |
| 21 | if ( 'only-on' == $disable_comments_type && $is_post_type_checked || 'except-on' == $disable_comments_type && !$is_post_type_checked || 'all-post-types' == $disable_comments_type ) { |
| 22 | remove_post_type_support( $post_type_slug, 'comments' ); |
| 23 | remove_post_type_support( $post_type_slug, 'trackbacks' ); |
| 24 | remove_meta_box( 'commentstatusdiv', $post_type_slug, 'normal' ); |
| 25 | remove_meta_box( 'commentstatusdiv', $post_type_slug, 'side' ); |
| 26 | remove_meta_box( 'commentsdiv', $post_type_slug, 'normal' ); |
| 27 | remove_meta_box( 'commentsdiv', $post_type_slug, 'side' ); |
| 28 | remove_meta_box( 'trackbacksdiv', $post_type_slug, 'normal' ); |
| 29 | remove_meta_box( 'trackbacksdiv', $post_type_slug, 'side' ); |
| 30 | // edit-comments.js |
| 31 | wp_dequeue_script( 'admin-comments' ); |
| 32 | } |
| 33 | } |
| 34 | } |
| 35 | |
| 36 | /** |
| 37 | * Hide existing comments from the frontend post |
| 38 | * |
| 39 | * @since 6.2.1 |
| 40 | */ |
| 41 | public function hide_existing_comments_on_frontend() { |
| 42 | $options = get_option( ASENHA_SLUG_U ); |
| 43 | $disable_comments_type = 'only-on'; |
| 44 | $disable_comments_for = $options['disable_comments_for']; |
| 45 | $current_post_type = get_post_type(); |
| 46 | foreach ( $disable_comments_for as $post_type_slug => $is_post_type_checked ) { |
| 47 | if ( 'only-on' == $disable_comments_type && $current_post_type === $post_type_slug && $is_post_type_checked || 'except-on' == $disable_comments_type && $current_post_type === $post_type_slug && !$is_post_type_checked || 'all-post-types' == $disable_comments_type ) { |
| 48 | add_filter( |
| 49 | 'comments_array', |
| 50 | '__return_empty_array', |
| 51 | 10, |
| 52 | 2 |
| 53 | ); |
| 54 | } |
| 55 | } |
| 56 | } |
| 57 | |
| 58 | /** |
| 59 | * Return empty comments array for comment templates |
| 60 | * |
| 61 | * @since 6.3.1 |
| 62 | */ |
| 63 | public function maybe_return_empty_comments( $comments, $post_id ) { |
| 64 | $options = get_option( ASENHA_SLUG_U ); |
| 65 | $disable_comments_type = 'only-on'; |
| 66 | $disable_comments_for = $options['disable_comments_for']; |
| 67 | $post = get_post( $post_id ); |
| 68 | $current_post_type = $post->post_type; |
| 69 | foreach ( $disable_comments_for as $post_type_slug => $is_post_type_checked ) { |
| 70 | if ( 'only-on' == $disable_comments_type && $current_post_type === $post_type_slug && $is_post_type_checked || 'except-on' == $disable_comments_type && $current_post_type === $post_type_slug && !$is_post_type_checked || 'all-post-types' == $disable_comments_type ) { |
| 71 | return array(); |
| 72 | } else { |
| 73 | return $comments; |
| 74 | } |
| 75 | } |
| 76 | } |
| 77 | |
| 78 | /** |
| 79 | * Close commenting on the frontend |
| 80 | * |
| 81 | * @since 2.7.0 |
| 82 | */ |
| 83 | public function close_comments_pings_on_frontend( $comments_pings_open, $post_id ) { |
| 84 | // If commenting or pinging is not open, let's keep it that way |
| 85 | if ( !$comments_pings_open ) { |
| 86 | return $comments_pings_open; |
| 87 | } |
| 88 | // Commenting or pinging is open for the post ID, let's decide if we should close it |
| 89 | $options = get_option( ASENHA_SLUG_U ); |
| 90 | $disable_comments_type = 'only-on'; |
| 91 | $disable_comments_for = $options['disable_comments_for']; |
| 92 | $post = get_post( $post_id ); |
| 93 | $current_post_type = $post->post_type; |
| 94 | foreach ( $disable_comments_for as $post_type_slug => $is_post_type_checked ) { |
| 95 | if ( 'only-on' == $disable_comments_type && $current_post_type === $post_type_slug && $is_post_type_checked || 'except-on' == $disable_comments_type && $current_post_type === $post_type_slug && !$is_post_type_checked || 'all-post-types' == $disable_comments_type ) { |
| 96 | return false; |
| 97 | } |
| 98 | } |
| 99 | return $comments_pings_open; |
| 100 | } |
| 101 | |
| 102 | /** |
| 103 | * Always return zero for comments count on a post where the post type has commenting disabled |
| 104 | * |
| 105 | * @since 6.2.7 |
| 106 | */ |
| 107 | public function return_zero_comments_count( $comments_number, $post_id ) { |
| 108 | $options = get_option( ASENHA_SLUG_U ); |
| 109 | $disable_comments_type = 'only-on'; |
| 110 | $disable_comments_for = $options['disable_comments_for']; |
| 111 | $post = get_post( $post_id ); |
| 112 | if ( is_object( $post ) && property_exists( $post, 'post_type' ) ) { |
| 113 | $current_post_type = $post->post_type; |
| 114 | foreach ( $disable_comments_for as $post_type_slug => $is_post_type_checked ) { |
| 115 | if ( 'only-on' == $disable_comments_type && $current_post_type === $post_type_slug && $is_post_type_checked || 'except-on' == $disable_comments_type && $current_post_type === $post_type_slug && !$is_post_type_checked || 'all-post-types' == $disable_comments_type ) { |
| 116 | return 0; |
| 117 | } |
| 118 | } |
| 119 | } |
| 120 | return $comments_number; |
| 121 | } |
| 122 | |
| 123 | /** |
| 124 | * Disable commenting via XML-RPC |
| 125 | * |
| 126 | * @link https://plugins.trac.wordpress.org/browser/disable-comments/tags/2.4.5/disable-comments.php |
| 127 | * @since 6.3.1 |
| 128 | */ |
| 129 | public function disable_xmlrpc_comments( $methods ) { |
| 130 | unset($methods['wp.newComment']); |
| 131 | return $methods; |
| 132 | } |
| 133 | |
| 134 | /** |
| 135 | * Disables comments endpoint in REST API |
| 136 | * |
| 137 | * @link https://plugins.trac.wordpress.org/browser/disable-comments/tags/2.4.5/disable-comments.php |
| 138 | * @since 6.3.1 |
| 139 | */ |
| 140 | public function disable_rest_api_comments_endpoints( $endpoints ) { |
| 141 | if ( isset( $endpoints['comments'] ) ) { |
| 142 | unset($endpoints['comments']); |
| 143 | } |
| 144 | if ( isset( $endpoints['/wp/v2/comments'] ) ) { |
| 145 | unset($endpoints['/wp/v2/comments']); |
| 146 | } |
| 147 | if ( isset( $endpoints['/wp/v2/comments/(?P<id>[\\d]+)'] ) ) { |
| 148 | unset($endpoints['/wp/v2/comments/(?P<id>[\\d]+)']); |
| 149 | } |
| 150 | return $endpoints; |
| 151 | } |
| 152 | |
| 153 | /** |
| 154 | * Return blank comment before inserting to DB |
| 155 | * |
| 156 | * @link https://plugins.trac.wordpress.org/browser/disable-comments/tags/2.4.5/disable-comments.php |
| 157 | * @since 6.3.1 |
| 158 | */ |
| 159 | public function return_blank_comment( $prepared_comment, $request ) { |
| 160 | return; |
| 161 | } |
| 162 | |
| 163 | /** |
| 164 | * Show blank template on singular views when comment is disabled |
| 165 | * |
| 166 | * @since 4.9.2 |
| 167 | */ |
| 168 | public function show_blank_comment_template() { |
| 169 | $options = get_option( ASENHA_SLUG_U ); |
| 170 | $disable_comments_type = 'only-on'; |
| 171 | $disable_comments_for = $options['disable_comments_for']; |
| 172 | $current_post_type = get_post_type(); |
| 173 | foreach ( $disable_comments_for as $post_type_slug => $is_post_type_checked ) { |
| 174 | if ( 'only-on' == $disable_comments_type && $current_post_type === $post_type_slug && $is_post_type_checked || 'except-on' == $disable_comments_type && $current_post_type === $post_type_slug && !$is_post_type_checked || 'all-post-types' == $disable_comments_type ) { |
| 175 | if ( is_singular() ) { |
| 176 | add_filter( 'comments_template', [$this, 'load_blank_comment_template'], 20 ); |
| 177 | } |
| 178 | } |
| 179 | } |
| 180 | } |
| 181 | |
| 182 | /** |
| 183 | * Load the actual blank comment template |
| 184 | * |
| 185 | * @since 4.9.2 |
| 186 | */ |
| 187 | public function load_blank_comment_template() { |
| 188 | return ASENHA_PATH . 'includes/blank-comment-template.php'; |
| 189 | } |
| 190 | |
| 191 | } |
| 192 |