diff --git a/inc/template-tags.php b/inc/template-tags.php
index 22272a6..b587038 100644
--- a/inc/template-tags.php
+++ b/inc/template-tags.php
@@ -534,6 +534,10 @@ namespace DevHub {
 		$args_strings = array();
 		$types        = array();
 
+		if ( 'wp-parser-class' == get_post_type( $post_id ) ) {
+			return $signature ;
+		}
+
 		if ( $tags ) {
 			foreach ( $tags as $tag ) {
 				if ( is_array( $tag ) && 'param' == $tag['name'] ) {
diff --git a/reference/template-related.php b/reference/template-related.php
index 8c78f95..688da2b 100644
--- a/reference/template-related.php
+++ b/reference/template-related.php
@@ -29,7 +29,7 @@ if ( show_usage_info() ) :
 						?>
 						<li>
 							<span><?php echo esc_attr( get_source_file() ); ?>:</span>
-							<a href="<?php the_permalink(); ?>"><?php the_title(); ?><?php if ( 'wp-parser-hook' !== get_post_type() ) : ?>()<?php endif; ?></a>
+							<a href="<?php the_permalink(); ?>"><?php the_title(); ?><?php if (!in_array( get_post_type(), array( 'wp-parser-class', 'wp-parser-hook' ) ) ) : ?>()<?php endif; ?></a>
 						</li>
 					<?php endwhile; wp_reset_postdata(); ?>
 					<?php if ( $uses->post_count > $uses_to_show ) : ?>
@@ -58,7 +58,7 @@ if ( show_usage_info() ) :
 					?>
 					<li>
 						<span><?php echo esc_attr( get_source_file() ); ?>:</span>
-						<a href="<?php the_permalink(); ?>"><?php the_title(); ?><?php if ( 'wp-parser-hook' !== get_post_type() ) : ?>()<?php endif; ?></a>
+						<a href="<?php the_permalink(); ?>"><?php the_title(); ?><?php if (!in_array( get_post_type(), array( 'wp-parser-class', 'wp-parser-hook' ) ) ) : ?>()<?php endif; ?></a>
 					</li>
 				<?php endwhile; wp_reset_postdata(); ?>
 				<?php if ( $used_by->post_count > $used_by_to_show ) : ?>
