# hide-metadata/1.2/hide-metadata.php

Hide/Remove Metadata, version 1.2. 299 lines.

- Page: https://pluginprobe.com/plugins/hide-metadata/1.2/code/hide-metadata.php
- Raw: https://pluginprobe.com/plugins/hide-metadata/1.2/raw/hide-metadata.php
- Modified: 2020-08-12T00:10:28+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/hide-metadata/1.2/code/hide-metadata.php#L10-L20`.

```php
<?php
/**
 * Plugin Name: Hide/Remove Metadata
 * Description: Hide/Remove Metadata is a free, simple yet extremely handy WordPress plugin that helps you hide author and published date either by CSS or PHP from your website effortlessly.
 * Plugin URI: http://catchplugins.com/plugins/hide-metadata
 * Author: Catch Plugins
 * Author URI: http://catchplugins.com/
 * Version: 1.2
 * License: GPL2
 * Text Domain: hide-metadata
 * Domain Path: /languages
 */

/*
	Copyright (C) Year  Author  Email

	This program is free software; you can redistribute it and/or modify
	it under the terms of the GNU General Public License, version 2, as
	published by the Free Software Foundation.

	This program is distributed in the hope that it will be useful,
	but WITHOUT ANY WARRANTY; without even the implied warranty of
	MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
	GNU General Public License for more details.

	You should have received a copy of the GNU General Public License
	along with this program; if not, write to the Free Software
	Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
*/

define( 'HIDE_METADATA_VERSION', '1.2' );

class Hide_Metadata {
	private $plugin_name;
	private $version;
	private $options;

	function __construct() {
		$this->plugin_name = 'hide-metadata';
		$this->version     = HIDE_METADATA_VERSION;
		$this->options     = hide_metadata_get_options();

		add_action( 'admin_init', array( $this, 'register_settings' ) );
		add_action( 'admin_menu', array( $this, 'add_plugin_settings_menu' ) );
		add_action( 'admin_enqueue_scripts', array( $this, 'enqueue_styles' ) );
		add_action( 'admin_enqueue_scripts', array( $this, 'enqueue_scripts' ) );

		add_filter( 'plugin_row_meta', array( $this, 'add_plugin_meta_links' ), 10, 2 );

		add_filter( 'plugin_action_links', array( $this, 'action_links' ), 10, 2 );

		if ( 'php' === $this->options['hide_by'] ) {
			add_action( 'loop_start', array( $this, 'remove_php' ) );
		}
		add_action( 'wp_head', array( $this, 'css_filter_option' ) );
	}

	/**
	 * Register the stylesheets for the admin area.
	 *
	 * @since    1.0.0
	 */
	function enqueue_styles() {
		if ( isset( $_GET['page'] ) && 'hide-metadata' === $_GET['page'] ) {
			wp_enqueue_style( $this->plugin_name . '-display-dashboard', plugin_dir_url( __FILE__ ) . 'css/admin-dashboard.css', array(), $this->version, 'all' );
		}
	}

	/**
	 * Register the scripts for the admin area.
	 *
	 * @since    1.0.0
	 */
	function enqueue_scripts() {
		if ( isset( $_GET['page'] ) && 'hide-metadata' === $_GET['page'] ) {
			wp_enqueue_script( $this->plugin_name, plugin_dir_url( __FILE__ ) . 'js/hide-metadata-admin.js', array( 'jquery', 'matchHeight', 'jquery-ui-tooltip' ), $this->version, false );

			wp_enqueue_script( 'matchHeight', plugin_dir_url( __FILE__ ) . 'js/jquery-matchHeight.min.js', array( 'jquery' ), $this->version, false );

		}
	}

	/**
	 * Hide/Remove MetaData: action_links
	 * Hide/Remove MetaData Settings Link function callback
	 *
	 * @param arrray $links Link url.
	 *
	 * @param arrray $file File name.
	 */
	function action_links( $links, $file ) {
		if ( $file === $this->plugin_name . '/' . $this->plugin_name . '.php' ) {
			$settings_link = '<a href="' . esc_url( admin_url( 'admin.php?page=hide-metadata' ) ) . '">' . esc_html__( 'Settings', 'hide-metadata' ) . '</a>';

			array_unshift( $links, $settings_link );
		}
		return $links;
	}

	/**
	 * Add settings menu
	 */
	function add_plugin_settings_menu() {
		// Add Main Menu
		add_menu_page(
			esc_html__( 'Hide/Remove Metadata', 'hide-metadata' ),
			esc_html__( 'Hide/Remove Metadata', 'hide-metadata' ),
			'manage_options',
			'hide-metadata',
			array( $this, 'settings_page' ),
			'dashicons-visibility',
			'99.01564'
		);
	}

	/**
	 * Hide/Remove MetaData: settings_page
	 * Hide/Remove MetaData Setting function
	 */
	function settings_page() {
		if ( ! current_user_can( 'manage_options' ) ) {
			wp_die( esc_html__( 'You do not have sufficient permissions to access this page.' ) );
		}

		require plugin_dir_path( __FILE__ ) . 'partials/admin-display.php';
	}

	function register_settings() {
		register_setting(
			'hide-metadata-group',
			'hide_metadata_options',
			array( $this, 'sanitize_callback' )
		);
	}

	public function sanitize_callback( $input ) {
		if ( isset( $input['reset'] ) && $input['reset'] ) {
			//If reset, restore defaults
			return hide_metadata_default_options();
		}
		$message = null;
		$type    = null;

		// Verify the nonce before proceeding.
		if ( ( defined( 'DOING_AUTOSAVE' ) && DOING_AUTOSAVE )
			|| ( ! isset( $_POST['hide_metadata_nounce'] )
			|| ! wp_verify_nonce( sanitize_text_field( wp_unslash( $_POST['hide_metadata_nounce'] ) ), basename( __FILE__ ) ) )
			|| ( ! check_admin_referer( basename( __FILE__ ), 'hide_metadata_nounce' ) ) ) {
			if ( null !== $input ) {

				$input['hide_by']     = sanitize_key( $input['hide_by'] );
				$input['hide_author'] = ( isset( $input['hide_author'] ) && 'on' == $input['hide_author'] ) ? '1' : '0';
				$input['hide_date']   = ( isset( $input['hide_date'] ) && 'on' == $input['hide_date'] ) ? '1' : '0';

				return $input;
			}
			return 'Invalid Nonce';
		}
	}

	function hide_by_css() {

		$css     = '';
		$options = hide_metadata_get_options();

		// Hide author CSS
		if ( 1 == $options['hide_author'] && 'css' === $options['hide_by'] ) {
			$css .= ".entry-meta .byline,
.entry-header .entry-meta > span.byline {
	display: none;
}\n";
		}

		// Hide date CSS
		if ( 1 == $options['hide_date'] && 'css' === $options['hide_by'] ) {
			$css .= ".entry-meta .posted-on,
.entry-header .entry-meta > span.posted-on {
	display: none;
}\n";
		}

		// Hide author
		if ( 1 == $options['hide_author'] && 'php' === $options['hide_by'] ) {
			$css .= ".entry-meta .byline:before,
.entry-header .entry-meta span.byline:before,
.entry-meta .byline:after,
.entry-header .entry-meta span.byline:after,
.single .byline, .group-blog .byline,
.entry-meta .byline,
.entry-header .entry-meta > span.byline {
	content: '';
	display: none;
	margin: 0;
}\n";
		}

		// Hide date
		if ( 1 == $options['hide_date'] && 'php' === $options['hide_by'] ) {
			$css .= ".entry-meta .posted-on:before,
.entry-header .entry-meta > span.posted-on:before,
.entry-meta .posted-on:after,
.entry-header .entry-meta > span.posted-on:after,
.entry-meta .posted-on,
.entry-header .entry-meta > span.posted-on {
	content: '';
	display: none;
	margin: 0;
}\n";
		}

		return $css;
	}

	//Removal using css

	function inline_style() {
		$css = $this->hide_by_css();
		if ( ! empty( $css ) ) {
			echo "<style>\n\n/* CSS added by Hide Metadata Plugin */\n\n" . wp_strip_all_tags( $css ) . "</style>\n";
		}
	}

	function remove_php() {
		$options = hide_metadata_get_options();

		if ( 1 == $options['hide_author'] ) {
			add_filter( 'the_author', '__return_false' );
			add_filter( 'get_the_author', '__return_false' );
			add_filter( 'author_link', '__return_false' );
		}

		if ( 1 == $options['hide_date'] ) {
			add_filter( 'the_date', '__return_false' );
			add_filter( 'the_time', '__return_false' );
			add_filter( 'the_modified_date', '__return_false' );
			add_filter( 'get_the_date', '__return_false' );
			add_filter( 'get_the_title', '__return_false' );
			add_filter( 'get_the_time', '__return_false' );
			add_filter( 'get_the_modified_date', '__return_false' );
		}
	}

	function css_filter_option() {
			$this->inline_style();
	}

	function add_plugin_meta_links( $meta_fields, $file ) {

		if ( $file === plugin_basename( __FILE__ ) ) {

			$meta_fields[] = "<a href='https://catchplugins.com/support-forum/forum/hide-metadata/' target='_blank'>Support Forum</a>";
			$meta_fields[] = "<a href='https://wordpress.org/support/plugin/hide-metadata/reviews#new-post' target='_blank' title='Rate'>
			        <i class='ct-rate-stars'>"
			. "<svg xmlns='http://www.w3.org/2000/svg' width='15' height='15' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-star'><polygon points='12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2'/></svg>"
			. "<svg xmlns='http://www.w3.org/2000/svg' width='15' height='15' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-star'><polygon points='12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2'/></svg>"
			. "<svg xmlns='http://www.w3.org/2000/svg' width='15' height='15' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-star'><polygon points='12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2'/></svg>"
			. "<svg xmlns='http://www.w3.org/2000/svg' width='15' height='15' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-star'><polygon points='12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2'/></svg>"
			. "<svg xmlns='http://www.w3.org/2000/svg' width='15' height='15' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-star'><polygon points='12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2'/></svg>"
			. '</i></a>';

			$stars_color = '#ffb900';

			echo '<style>'
				. '.ct-rate-stars{display:inline-block;color:' . $stars_color . ';position:relative;top:3px;}'
				. '.ct-rate-stars svg{fill:' . $stars_color . ';}'
				. '.ct-rate-stars svg:hover{fill:' . $stars_color . '}'
				. '.ct-rate-stars svg:hover ~ svg{fill:none;}'
				. '</style>';
		}

		return $meta_fields;
	}

}

new Hide_Metadata();


function hide_metadata_default_options( $option = null ) {
	$default_options = array(
		'hide_by'     => 'css',
		'hide_author' => 0,
		'hide_date'   => 0,
	);

	if ( null === $option ) {
		return apply_filters( 'hide_metadata_options', $default_options );
	} else {
		return $default_options[ $option ];
	}
}

function hide_metadata_get_options() {
	$defaults = hide_metadata_default_options();
	$options  = get_option( 'hide_metadata_options', $defaults );

	return wp_parse_args( $options, $defaults );
}

```
