Index: public_html/wp-content/themes/jobswp/content-category.php
===================================================================
--- public_html/wp-content/themes/jobswp/content-category.php	(revision 12722)
+++ public_html/wp-content/themes/jobswp/content-category.php	(working copy)
@@ -1,6 +1,9 @@
 <div class="jobs-group">
 
 <?php
+	/**
+	 * @global $category.
+	 */
 	global $category;
 
 	$q = get_queried_object();
Index: public_html/wp-content/themes/jobswp/content-home.php
===================================================================
--- public_html/wp-content/themes/jobswp/content-home.php	(revision 12722)
+++ public_html/wp-content/themes/jobswp/content-home.php	(working copy)
@@ -1,4 +1,9 @@
 <?php
+
+/**
+ * @global $category.
+ */
+
 global $category;
 
 $job_categories = Jobs_Dot_WP::get_job_categories();
Index: public_html/wp-content/themes/jobswp/content-list.php
===================================================================
--- public_html/wp-content/themes/jobswp/content-list.php	(revision 12722)
+++ public_html/wp-content/themes/jobswp/content-list.php	(working copy)
@@ -1,4 +1,7 @@
 <?php
+	/**
+	 * @global WP_Post $post Global post object.
+	 */
 	$evenodd = 0;
 	if ( $posts ) {
 		global $post;
Index: public_html/wp-content/themes/jobswp/functions.php
===================================================================
--- public_html/wp-content/themes/jobswp/functions.php	(revision 12722)
+++ public_html/wp-content/themes/jobswp/functions.php	(working copy)
@@ -130,6 +130,7 @@
 
 /**
  * Sets 404 response for author archive requests.
+ * @global WP_Query $wp_query Query object.
  */
 function jobswp_author_archives_404() {
 	if ( is_author() ) {
@@ -146,6 +147,7 @@
  * Currently output for:
  * - empty job category archives
  * - search results
+ * @global WP_Query $wp_query Query object.
  */
 function jobswp_noindex() {
 	global $wp_query;
Index: public_html/wp-content/themes/jobswp/inc/extras.php
===================================================================
--- public_html/wp-content/themes/jobswp/inc/extras.php	(revision 12722)
+++ public_html/wp-content/themes/jobswp/inc/extras.php	(working copy)
@@ -46,6 +46,7 @@
 
 /**
  * Filters wp_title to print a neat <title> tag based on what is being viewed.
+ * @global $paged, $page
  */
 function jobswp_wp_title( $title, $sep ) {
 	global $page, $paged;
Index: public_html/wp-content/themes/jobswp/inc/template-tags.php
===================================================================
--- public_html/wp-content/themes/jobswp/inc/template-tags.php	(revision 12722)
+++ public_html/wp-content/themes/jobswp/inc/template-tags.php	(working copy)
@@ -10,6 +10,9 @@
 if ( ! function_exists( 'jobswp_content_nav' ) ) :
 /**
  * Display navigation to next/previous pages when applicable
+ * 
+ * @global WP_Query $wp_query Query object.
+ * @global WP_Post $post Global post object.
  */
 function jobswp_content_nav( $nav_id ) {
 	global $wp_query, $post;
