Changeset 30656 for trunk/src/wp-includes/link-template.php
- Timestamp:
- 11/30/2014 12:09:56 PM (11 years ago)
- File:
-
- 1 edited
-
trunk/src/wp-includes/link-template.php (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/link-template.php
r30628 r30656 1525 1525 * Filter the JOIN clause in the SQL for an adjacent post query. 1526 1526 * 1527 * The dynamic portion of the hook name, $adjacent, refers to the type1527 * The dynamic portion of the hook name, `$adjacent`, refers to the type 1528 1528 * of adjacency, 'next' or 'previous'. 1529 1529 * … … 1539 1539 * Filter the WHERE clause in the SQL for an adjacent post query. 1540 1540 * 1541 * The dynamic portion of the hook name, $adjacent, refers to the type1541 * The dynamic portion of the hook name, `$adjacent`, refers to the type 1542 1542 * of adjacency, 'next' or 'previous'. 1543 1543 * 1544 1544 * @since 2.5.0 1545 1545 * 1546 * @param string $where The WHEREclause in the SQL.1546 * @param string $where The `WHERE` clause in the SQL. 1547 1547 * @param bool $in_same_term Whether post should be in a same taxonomy term. 1548 1548 * @param array $excluded_terms Array of excluded term IDs. … … 1553 1553 * Filter the ORDER BY clause in the SQL for an adjacent post query. 1554 1554 * 1555 * The dynamic portion of the hook name, $adjacent, refers to the type1555 * The dynamic portion of the hook name, `$adjacent`, refers to the type 1556 1556 * of adjacency, 'next' or 'previous'. 1557 1557 * 1558 1558 * @since 2.5.0 1559 1559 * 1560 * @param string $order_by The ORDER BYclause in the SQL.1560 * @param string $order_by The `ORDER BY` clause in the SQL. 1561 1561 */ 1562 1562 $sort = apply_filters( "get_{$adjacent}_post_sort", "ORDER BY p.post_date $order LIMIT 1" ); … … 1625 1625 * Filter the adjacent post relational link. 1626 1626 * 1627 * The dynamic portion of the hook name, $adjacent, refers to the type1627 * The dynamic portion of the hook name, `$adjacent`, refers to the type 1628 1628 * of adjacency, 'next' or 'previous'. 1629 1629 * … … 1862 1862 * Filter the adjacent post link. 1863 1863 * 1864 * The dynamic portion of the hook name, $adjacent, refers to the type1864 * The dynamic portion of the hook name, `$adjacent`, refers to the type 1865 1865 * of adjacency, 'next' or 'previous'. 1866 1866 *
Note: See TracChangeset
for help on using the changeset viewer.