Ticket #6654: 6654.4.patch
File 6654.4.patch, 2.9 KB (added by , 21 months ago) |
---|
-
public_html/wp-content/themes/jobswp/content-category.php
1 1 <div class="jobs-group"> 2 2 3 3 <?php 4 /** 5 * @global $category. 6 */ 4 7 global $category; 5 8 6 9 $q = get_queried_object(); -
public_html/wp-content/themes/jobswp/content-home.php
1 1 <?php 2 3 /** 4 * @global $category. 5 */ 6 2 7 global $category; 3 8 4 9 $job_categories = Jobs_Dot_WP::get_job_categories(); -
public_html/wp-content/themes/jobswp/content-list.php
1 1 <?php 2 /** 3 * @global WP_Post $post Global post object. 4 */ 2 5 $evenodd = 0; 3 6 if ( $posts ) { 4 7 global $post; -
public_html/wp-content/themes/jobswp/functions.php
130 130 131 131 /** 132 132 * Sets 404 response for author archive requests. 133 * @global WP_Query $wp_query Query object. 133 134 */ 134 135 function jobswp_author_archives_404() { 135 136 if ( is_author() ) { … … 146 147 * Currently output for: 147 148 * - empty job category archives 148 149 * - search results 150 * @global WP_Query $wp_query Query object. 149 151 */ 150 152 function jobswp_noindex() { 151 153 global $wp_query; -
public_html/wp-content/themes/jobswp/inc/extras.php
46 46 47 47 /** 48 48 * Filters wp_title to print a neat <title> tag based on what is being viewed. 49 * @global $paged, $page 49 50 */ 50 51 function jobswp_wp_title( $title, $sep ) { 51 52 global $page, $paged; -
public_html/wp-content/themes/jobswp/inc/template-tags.php
10 10 if ( ! function_exists( 'jobswp_content_nav' ) ) : 11 11 /** 12 12 * Display navigation to next/previous pages when applicable 13 * 14 * @global WP_Query $wp_query Query object. 15 * @global WP_Post $post Global post object. 13 16 */ 14 17 function jobswp_content_nav( $nav_id ) { 15 18 global $wp_query, $post;