kollapsminoriteten/wp-content/plugins/hitmag.php

25 lines
374 B
PHP
Raw Normal View History

2022-12-15 19:06:02 +01:00
<?php
/**
* Plugin Name: Hitmag Addon
* Plugin URI:
* Description: Hitmag Addon
* Author:
* Version: 1.0
* Author URI:
* License:
* Text Domain:
* Requires at least: 6.0
* Requires PHP: 5.6
*/
function hitmag_author() {
if (is_author()) {
get_template_part( 'template-parts/authorbox' );
}
}
add_filter('hitmag_before_archive_posts', 'hitmag_author');
?>