Making WordPress.org

Ticket #6654: 6654.4.patch

File 6654.4.patch, 2.9 KB (added by viralsampat, 21 months ago)

I have checked above mentioned issue and founds few more files. I have applied its patch.

  • public_html/wp-content/themes/jobswp/content-category.php

     
    11<div class="jobs-group">
    22
    33<?php
     4        /**
     5         * @global $category.
     6         */
    47        global $category;
    58
    69        $q = get_queried_object();
  • public_html/wp-content/themes/jobswp/content-home.php

     
    11<?php
     2
     3/**
     4 * @global $category.
     5 */
     6
    27global $category;
    38
    49$job_categories = Jobs_Dot_WP::get_job_categories();
  • public_html/wp-content/themes/jobswp/content-list.php

     
    11<?php
     2        /**
     3         * @global WP_Post $post Global post object.
     4         */
    25        $evenodd = 0;
    36        if ( $posts ) {
    47                global $post;
  • public_html/wp-content/themes/jobswp/functions.php

     
    130130
    131131/**
    132132 * Sets 404 response for author archive requests.
     133 * @global WP_Query $wp_query Query object.
    133134 */
    134135function jobswp_author_archives_404() {
    135136        if ( is_author() ) {
     
    146147 * Currently output for:
    147148 * - empty job category archives
    148149 * - search results
     150 * @global WP_Query $wp_query Query object.
    149151 */
    150152function jobswp_noindex() {
    151153        global $wp_query;
  • public_html/wp-content/themes/jobswp/inc/extras.php

     
    4646
    4747/**
    4848 * Filters wp_title to print a neat <title> tag based on what is being viewed.
     49 * @global $paged, $page
    4950 */
    5051function jobswp_wp_title( $title, $sep ) {
    5152        global $page, $paged;
  • public_html/wp-content/themes/jobswp/inc/template-tags.php

     
    1010if ( ! function_exists( 'jobswp_content_nav' ) ) :
    1111/**
    1212 * 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.
    1316 */
    1417function jobswp_content_nav( $nav_id ) {
    1518        global $wp_query, $post;