Ticket #4148: 4148.patch
File 4148.patch, 2.0 KB (added by , 6 years ago) |
---|
-
wordpress.tv/public_html/wp-content/themes/wptv2/functions.php
259 259 * Relies on various other filters used once. 260 260 * @todo optimize the get_tax_query part. 261 261 * 262 * @global wpdb $wpdb WordPress database abstraction object. 263 * 262 264 * @param string $search 263 265 * @param WP_Query $query 264 266 * @return string … … 313 315 * This adds the JOIN clause resulting from the taxonomy 314 316 * search. Make sure this filter runs only once per WP_Query request. 315 317 * 318 * @global wpdb $wpdb WordPress database abstraction object. 319 * 316 320 * @param string $join 317 321 * @param WP_Query $query 318 322 * @return string … … 337 341 * search query matches content and one or more taxonomies. 338 342 * This filter glues all duplicates. Use only once per WP_Query. 339 343 * 344 * @global wpdb $wpdb WordPress database abstraction object. 345 * 340 346 * @param string $group_by 341 347 * @param WP_Query $query 342 348 * @return string … … 466 472 467 473 /** 468 474 * Renders the video or a video thumbnail 469 * 475 * 476 * @global WP_Post $post 477 * @global $originalcontent 478 * 470 479 * @param bool $thumb 471 480 * @param bool $no_html 472 481 */ … … 539 548 /** 540 549 * Outputs the video image 541 550 * 551 * @global WP_Post $post 552 * 542 553 * @param int $h 543 554 * @param int $w 544 555 * @param bool $arrow … … 594 605 /** 595 606 * Removes shortcodes from $originalcontent global 596 607 * 608 * @global $originalcontent 609 * 597 610 * @param string $content 598 611 * @return mixed 599 612 */ … … 783 796 * Create a nicely formatted and more specific title element text for output 784 797 * in head of document, based on current view. 785 798 * 799 * @global $paged 800 * @global $page 801 * 802 * 786 803 * @param string $title Default title text for current view. 787 804 * @param string $sep Optional separator. 788 805 * @return string The filtered title.