Skip to content

Commit 4b3c490

Browse files
author
Tom Mitchelmore
committed
Fix rogue __ after links
1 parent c3cbaeb commit 4b3c490

File tree

5 files changed

+55
-55
lines changed

5 files changed

+55
-55
lines changed

docs/the-basics/query-builder.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -285,7 +285,7 @@ When using the query builder from a post type, the query is automatically scoped
285285
$jobs = Job::builder()->get();
286286
```
287287

288-
_Reference:_ [_WP_Query - Type Parameters_](https://codex.wordpress.org/Class_Reference/WP_Query#Type_Parameters)\_\_
288+
_Reference:_ [_WP_Query - Type Parameters_](https://codex.wordpress.org/Class_Reference/WP_Query#Type_Parameters)
289289

290290
### whereIdIn(array $ids)
291291

@@ -297,7 +297,7 @@ Scope the query to only look for specific post IDs.
297297

298298
Sets the `post__in` argument in `WP_Query`.
299299

300-
_Reference:_ [_WP_Query - Post & Page Parameters_](https://codex.wordpress.org/Class_Reference/WP_Query#Post_.26_Page_Parameters)\_\_
300+
_Reference:_ [_WP_Query - Post & Page Parameters_](https://codex.wordpress.org/Class_Reference/WP_Query#Post_.26_Page_Parameters)
301301

302302
### whereIdNotIn(array $ids)
303303

@@ -309,7 +309,7 @@ Scope the query to exclude specific post IDs.
309309

310310
Sets the `post__not_in` argument in `WP_Query`.
311311

312-
_Reference:_ [_WP_Query - Post & Page Parameters_](https://codex.wordpress.org/Class_Reference/WP_Query#Post_.26_Page_Parameters)\_\_
312+
_Reference:_ [_WP_Query - Post & Page Parameters_](https://codex.wordpress.org/Class_Reference/WP_Query#Post_.26_Page_Parameters)
313313

314314
### whereStatus()
315315

@@ -341,7 +341,7 @@ Scope the query to only include posts with the given status. By default WordPres
341341

342342
Sets the `post_status` argument in `WP_Query`.
343343

344-
_Reference:_ [_WP_Query - Status Parameters_](https://codex.wordpress.org/Class_Reference/WP_Query#Status_Parameters)\_\_
344+
_Reference:_ [_WP_Query - Status Parameters_](https://codex.wordpress.org/Class_Reference/WP_Query#Status_Parameters)
345345

346346
### whereMeta($key, $value, $compare = '=', $type = null)
347347

@@ -401,7 +401,7 @@ This will yield the following parameters:
401401
]
402402
```
403403

404-
_Reference:_ [_WP_Query - Custom Field Parameters_](https://codex.wordpress.org/Class_Reference/WP_Query#Custom_Field_Parameters)\_\_
404+
_Reference:_ [_WP_Query - Custom Field Parameters_](https://codex.wordpress.org/Class_Reference/WP_Query#Custom_Field_Parameters)
405405

406406
### whereMetaRelationshipIs(string $relation)
407407

@@ -436,7 +436,7 @@ This will yield the following parameters, adding the `'relation' => 'or'` to the
436436
]
437437
```
438438

439-
_Reference:_ [_WP_Query - Custom Field Parameters_](https://codex.wordpress.org/Class_Reference/WP_Query#Custom_Field_Parameters)\_\_
439+
_Reference:_ [_WP_Query - Custom Field Parameters_](https://codex.wordpress.org/Class_Reference/WP_Query#Custom_Field_Parameters)
440440

441441
### limit($limit)
442442

@@ -448,7 +448,7 @@ Set the number of results to get back from the query.
448448

449449
Sets the `posts_per_page` argument in `WP_Query`.
450450

451-
_Reference:_ [_WP_Query - Pagination Parameters_](https://codex.wordpress.org/Class_Reference/WP_Query#Pagination_Parameters)\_\_
451+
_Reference:_ [_WP_Query - Pagination Parameters_](https://codex.wordpress.org/Class_Reference/WP_Query#Pagination_Parameters)
452452

453453
### offset($offset)
454454

@@ -460,7 +460,7 @@ Set the number of results to displace or pass over.
460460

461461
Sets the `offset` argument in `WP_Query`.
462462

463-
_Reference:_ [_WP_Query - Pagination Parameters_](https://codex.wordpress.org/Class_Reference/WP_Query#Pagination_Parameters)\_\_
463+
_Reference:_ [_WP_Query - Pagination Parameters_](https://codex.wordpress.org/Class_Reference/WP_Query#Pagination_Parameters)
464464

465465
### orderBy($orderBy, $order = 'asc')
466466

@@ -477,7 +477,7 @@ Sets the `orderby` and `order` arguments in `WP_Query`.
477477
$query->orderBy('title', 'asc');
478478
```
479479

480-
_Reference:_ [_WP_Query - Order & Orderby Parameters_](https://codex.wordpress.org/Class_Reference/WP_Query#Order_.26_Orderby_Parameters)\_\_
480+
_Reference:_ [_WP_Query - Order & Orderby Parameters_](https://codex.wordpress.org/Class_Reference/WP_Query#Order_.26_Orderby_Parameters)
481481

482482
### orderByMeta($metaKey, $order = 'asc', $type = null)
483483

@@ -489,7 +489,7 @@ _Reference:_ [_WP_Query - Order & Orderby Parameters_](https://codex.wordpress.o
489489

490490
Sets the `orderby` argument for `WP_Query` to `meta_value` when ordering strings, and `meta_value_num` when ordering numbers.
491491

492-
_Reference:_ [_WP_Query - Order & Orderby Parameters_](https://codex.wordpress.org/Class_Reference/WP_Query#Order_.26_Orderby_Parameters)\_\_
492+
_Reference:_ [_WP_Query - Order & Orderby Parameters_](https://codex.wordpress.org/Class_Reference/WP_Query#Order_.26_Orderby_Parameters)
493493

494494
### as($postClass)
495495

@@ -520,7 +520,7 @@ $events = Event::get();
520520

521521
:::
522522

523-
_Reference:_ [_Timber - get_posts()_](https://timber.github.io/docs/reference/timber/#get-posts)\_\_
523+
_Reference:_ [_Timber - get_posts()_](https://timber.github.io/docs/reference/timber/#get-posts)
524524

525525
### get()
526526

versioned_docs/version-v4/the-basics/query-builder.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -285,7 +285,7 @@ When using the query builder from a post type, the query is automatically scoped
285285
$jobs = Job::builder()->get();
286286
```
287287

288-
_Reference:_ [_WP_Query - Type Parameters_](https://codex.wordpress.org/Class_Reference/WP_Query#Type_Parameters)\_\_
288+
_Reference:_ [_WP_Query - Type Parameters_](https://codex.wordpress.org/Class_Reference/WP_Query#Type_Parameters)
289289

290290
### whereIdIn(array $ids)
291291

@@ -297,7 +297,7 @@ Scope the query to only look for specific post IDs.
297297

298298
Sets the `post__in` argument in `WP_Query`.
299299

300-
_Reference:_ [_WP_Query - Post & Page Parameters_](https://codex.wordpress.org/Class_Reference/WP_Query#Post_.26_Page_Parameters)\_\_
300+
_Reference:_ [_WP_Query - Post & Page Parameters_](https://codex.wordpress.org/Class_Reference/WP_Query#Post_.26_Page_Parameters)
301301

302302
### whereIdNotIn(array $ids)
303303

@@ -309,7 +309,7 @@ Scope the query to exclude specific post IDs.
309309

310310
Sets the `post__not_in` argument in `WP_Query`.
311311

312-
_Reference:_ [_WP_Query - Post & Page Parameters_](https://codex.wordpress.org/Class_Reference/WP_Query#Post_.26_Page_Parameters)\_\_
312+
_Reference:_ [_WP_Query - Post & Page Parameters_](https://codex.wordpress.org/Class_Reference/WP_Query#Post_.26_Page_Parameters)
313313

314314
### whereStatus()
315315

@@ -341,7 +341,7 @@ Scope the query to only include posts with the given status. By default WordPres
341341

342342
Sets the `post_status` argument in `WP_Query`.
343343

344-
_Reference:_ [_WP_Query - Status Parameters_](https://codex.wordpress.org/Class_Reference/WP_Query#Status_Parameters)\_\_
344+
_Reference:_ [_WP_Query - Status Parameters_](https://codex.wordpress.org/Class_Reference/WP_Query#Status_Parameters)
345345

346346
### whereMeta($key, $value, $compare = '=', $type = null)
347347

@@ -401,7 +401,7 @@ This will yield the following parameters:
401401
]
402402
```
403403

404-
_Reference:_ [_WP_Query - Custom Field Parameters_](https://codex.wordpress.org/Class_Reference/WP_Query#Custom_Field_Parameters)\_\_
404+
_Reference:_ [_WP_Query - Custom Field Parameters_](https://codex.wordpress.org/Class_Reference/WP_Query#Custom_Field_Parameters)
405405

406406
### whereMetaRelationshipIs(string $relation)
407407

@@ -436,7 +436,7 @@ This will yield the following parameters, adding the `'relation' => 'or'` to the
436436
]
437437
```
438438

439-
_Reference:_ [_WP_Query - Custom Field Parameters_](https://codex.wordpress.org/Class_Reference/WP_Query#Custom_Field_Parameters)\_\_
439+
_Reference:_ [_WP_Query - Custom Field Parameters_](https://codex.wordpress.org/Class_Reference/WP_Query#Custom_Field_Parameters)
440440

441441
### limit($limit)
442442

@@ -448,7 +448,7 @@ Set the number of results to get back from the query.
448448

449449
Sets the `posts_per_page` argument in `WP_Query`.
450450

451-
_Reference:_ [_WP_Query - Pagination Parameters_](https://codex.wordpress.org/Class_Reference/WP_Query#Pagination_Parameters)\_\_
451+
_Reference:_ [_WP_Query - Pagination Parameters_](https://codex.wordpress.org/Class_Reference/WP_Query#Pagination_Parameters)
452452

453453
### offset($offset)
454454

@@ -460,7 +460,7 @@ Set the number of results to displace or pass over.
460460

461461
Sets the `offset` argument in `WP_Query`.
462462

463-
_Reference:_ [_WP_Query - Pagination Parameters_](https://codex.wordpress.org/Class_Reference/WP_Query#Pagination_Parameters)\_\_
463+
_Reference:_ [_WP_Query - Pagination Parameters_](https://codex.wordpress.org/Class_Reference/WP_Query#Pagination_Parameters)
464464

465465
### orderBy($orderBy, $order = 'asc')
466466

@@ -477,7 +477,7 @@ Sets the `orderby` and `order` arguments in `WP_Query`.
477477
$query->orderBy('title', 'asc');
478478
```
479479

480-
_Reference:_ [_WP_Query - Order & Orderby Parameters_](https://codex.wordpress.org/Class_Reference/WP_Query#Order_.26_Orderby_Parameters)\_\_
480+
_Reference:_ [_WP_Query - Order & Orderby Parameters_](https://codex.wordpress.org/Class_Reference/WP_Query#Order_.26_Orderby_Parameters)
481481

482482
### orderByMeta($metaKey, $order = 'asc', $type = null)
483483

@@ -489,7 +489,7 @@ _Reference:_ [_WP_Query - Order & Orderby Parameters_](https://codex.wordpress.o
489489

490490
Sets the `orderby` argument for `WP_Query` to `meta_value` when ordering strings, and `meta_value_num` when ordering numbers.
491491

492-
_Reference:_ [_WP_Query - Order & Orderby Parameters_](https://codex.wordpress.org/Class_Reference/WP_Query#Order_.26_Orderby_Parameters)\_\_
492+
_Reference:_ [_WP_Query - Order & Orderby Parameters_](https://codex.wordpress.org/Class_Reference/WP_Query#Order_.26_Orderby_Parameters)
493493

494494
### as($postClass)
495495

@@ -520,7 +520,7 @@ $events = Event::get();
520520

521521
:::
522522

523-
_Reference:_ [_Timber - get_posts()_](https://timber.github.io/docs/reference/timber/#get-posts)\_\_
523+
_Reference:_ [_Timber - get_posts()_](https://timber.github.io/docs/reference/timber/#get-posts)
524524

525525
### get()
526526

versioned_docs/version-v6/the-basics/query-builder.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -285,7 +285,7 @@ When using the query builder from a post type, the query is automatically scoped
285285
$jobs = Job::builder()->get();
286286
```
287287

288-
_Reference:_ [_WP_Query - Type Parameters_](https://codex.wordpress.org/Class_Reference/WP_Query#Type_Parameters)\_\_
288+
_Reference:_ [_WP_Query - Type Parameters_](https://codex.wordpress.org/Class_Reference/WP_Query#Type_Parameters)
289289

290290
### whereIdIn(array $ids)
291291

@@ -297,7 +297,7 @@ Scope the query to only look for specific post IDs.
297297

298298
Sets the `post__in` argument in `WP_Query`.
299299

300-
_Reference:_ [_WP_Query - Post & Page Parameters_](https://codex.wordpress.org/Class_Reference/WP_Query#Post_.26_Page_Parameters)\_\_
300+
_Reference:_ [_WP_Query - Post & Page Parameters_](https://codex.wordpress.org/Class_Reference/WP_Query#Post_.26_Page_Parameters)
301301

302302
### whereIdNotIn(array $ids)
303303

@@ -309,7 +309,7 @@ Scope the query to exclude specific post IDs.
309309

310310
Sets the `post__not_in` argument in `WP_Query`.
311311

312-
_Reference:_ [_WP_Query - Post & Page Parameters_](https://codex.wordpress.org/Class_Reference/WP_Query#Post_.26_Page_Parameters)\_\_
312+
_Reference:_ [_WP_Query - Post & Page Parameters_](https://codex.wordpress.org/Class_Reference/WP_Query#Post_.26_Page_Parameters)
313313

314314
### whereStatus()
315315

@@ -341,7 +341,7 @@ Scope the query to only include posts with the given status. By default WordPres
341341

342342
Sets the `post_status` argument in `WP_Query`.
343343

344-
_Reference:_ [_WP_Query - Status Parameters_](https://codex.wordpress.org/Class_Reference/WP_Query#Status_Parameters)\_\_
344+
_Reference:_ [_WP_Query - Status Parameters_](https://codex.wordpress.org/Class_Reference/WP_Query#Status_Parameters)
345345

346346
### whereMeta($key, $value, $compare = '=', $type = null)
347347

@@ -401,7 +401,7 @@ This will yield the following parameters:
401401
]
402402
```
403403

404-
_Reference:_ [_WP_Query - Custom Field Parameters_](https://codex.wordpress.org/Class_Reference/WP_Query#Custom_Field_Parameters)\_\_
404+
_Reference:_ [_WP_Query - Custom Field Parameters_](https://codex.wordpress.org/Class_Reference/WP_Query#Custom_Field_Parameters)
405405

406406
### whereMetaRelationshipIs(string $relation)
407407

@@ -436,7 +436,7 @@ This will yield the following parameters, adding the `'relation' => 'or'` to the
436436
]
437437
```
438438

439-
_Reference:_ [_WP_Query - Custom Field Parameters_](https://codex.wordpress.org/Class_Reference/WP_Query#Custom_Field_Parameters)\_\_
439+
_Reference:_ [_WP_Query - Custom Field Parameters_](https://codex.wordpress.org/Class_Reference/WP_Query#Custom_Field_Parameters)
440440

441441
### limit($limit)
442442

@@ -448,7 +448,7 @@ Set the number of results to get back from the query.
448448

449449
Sets the `posts_per_page` argument in `WP_Query`.
450450

451-
_Reference:_ [_WP_Query - Pagination Parameters_](https://codex.wordpress.org/Class_Reference/WP_Query#Pagination_Parameters)\_\_
451+
_Reference:_ [_WP_Query - Pagination Parameters_](https://codex.wordpress.org/Class_Reference/WP_Query#Pagination_Parameters)
452452

453453
### offset($offset)
454454

@@ -460,7 +460,7 @@ Set the number of results to displace or pass over.
460460

461461
Sets the `offset` argument in `WP_Query`.
462462

463-
_Reference:_ [_WP_Query - Pagination Parameters_](https://codex.wordpress.org/Class_Reference/WP_Query#Pagination_Parameters)\_\_
463+
_Reference:_ [_WP_Query - Pagination Parameters_](https://codex.wordpress.org/Class_Reference/WP_Query#Pagination_Parameters)
464464

465465
### orderBy($orderBy, $order = 'asc')
466466

@@ -477,7 +477,7 @@ Sets the `orderby` and `order` arguments in `WP_Query`.
477477
$query->orderBy('title', 'asc');
478478
```
479479

480-
_Reference:_ [_WP_Query - Order & Orderby Parameters_](https://codex.wordpress.org/Class_Reference/WP_Query#Order_.26_Orderby_Parameters)\_\_
480+
_Reference:_ [_WP_Query - Order & Orderby Parameters_](https://codex.wordpress.org/Class_Reference/WP_Query#Order_.26_Orderby_Parameters)
481481

482482
### orderByMeta($metaKey, $order = 'asc', $type = null)
483483

@@ -489,7 +489,7 @@ _Reference:_ [_WP_Query - Order & Orderby Parameters_](https://codex.wordpress.o
489489

490490
Sets the `orderby` argument for `WP_Query` to `meta_value` when ordering strings, and `meta_value_num` when ordering numbers.
491491

492-
_Reference:_ [_WP_Query - Order & Orderby Parameters_](https://codex.wordpress.org/Class_Reference/WP_Query#Order_.26_Orderby_Parameters)\_\_
492+
_Reference:_ [_WP_Query - Order & Orderby Parameters_](https://codex.wordpress.org/Class_Reference/WP_Query#Order_.26_Orderby_Parameters)
493493

494494
### as($postClass)
495495

@@ -520,7 +520,7 @@ $events = Event::get();
520520

521521
:::
522522

523-
_Reference:_ [_Timber - get_posts()_](https://timber.github.io/docs/reference/timber/#get-posts)\_\_
523+
_Reference:_ [_Timber - get_posts()_](https://timber.github.io/docs/reference/timber/#get-posts)
524524

525525
### get()
526526

versioned_docs/version-v7/the-basics/query-builder.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -285,7 +285,7 @@ When using the query builder from a post type, the query is automatically scoped
285285
$jobs = Job::builder()->get();
286286
```
287287

288-
_Reference:_ [_WP_Query - Type Parameters_](https://codex.wordpress.org/Class_Reference/WP_Query#Type_Parameters)\_\_
288+
_Reference:_ [_WP_Query - Type Parameters_](https://codex.wordpress.org/Class_Reference/WP_Query#Type_Parameters)
289289

290290
### whereIdIn(array $ids)
291291

@@ -297,7 +297,7 @@ Scope the query to only look for specific post IDs.
297297

298298
Sets the `post__in` argument in `WP_Query`.
299299

300-
_Reference:_ [_WP_Query - Post & Page Parameters_](https://codex.wordpress.org/Class_Reference/WP_Query#Post_.26_Page_Parameters)\_\_
300+
_Reference:_ [_WP_Query - Post & Page Parameters_](https://codex.wordpress.org/Class_Reference/WP_Query#Post_.26_Page_Parameters)
301301

302302
### whereIdNotIn(array $ids)
303303

@@ -309,7 +309,7 @@ Scope the query to exclude specific post IDs.
309309

310310
Sets the `post__not_in` argument in `WP_Query`.
311311

312-
_Reference:_ [_WP_Query - Post & Page Parameters_](https://codex.wordpress.org/Class_Reference/WP_Query#Post_.26_Page_Parameters)\_\_
312+
_Reference:_ [_WP_Query - Post & Page Parameters_](https://codex.wordpress.org/Class_Reference/WP_Query#Post_.26_Page_Parameters)
313313

314314
### whereStatus()
315315

@@ -341,7 +341,7 @@ Scope the query to only include posts with the given status. By default WordPres
341341

342342
Sets the `post_status` argument in `WP_Query`.
343343

344-
_Reference:_ [_WP_Query - Status Parameters_](https://codex.wordpress.org/Class_Reference/WP_Query#Status_Parameters)\_\_
344+
_Reference:_ [_WP_Query - Status Parameters_](https://codex.wordpress.org/Class_Reference/WP_Query#Status_Parameters)
345345

346346
### whereMeta($key, $value, $compare = '=', $type = null)
347347

@@ -401,7 +401,7 @@ This will yield the following parameters:
401401
]
402402
```
403403

404-
_Reference:_ [_WP_Query - Custom Field Parameters_](https://codex.wordpress.org/Class_Reference/WP_Query#Custom_Field_Parameters)\_\_
404+
_Reference:_ [_WP_Query - Custom Field Parameters_](https://codex.wordpress.org/Class_Reference/WP_Query#Custom_Field_Parameters)
405405

406406
### whereMetaRelationshipIs(string $relation)
407407

@@ -436,7 +436,7 @@ This will yield the following parameters, adding the `'relation' => 'or'` to the
436436
]
437437
```
438438

439-
_Reference:_ [_WP_Query - Custom Field Parameters_](https://codex.wordpress.org/Class_Reference/WP_Query#Custom_Field_Parameters)\_\_
439+
_Reference:_ [_WP_Query - Custom Field Parameters_](https://codex.wordpress.org/Class_Reference/WP_Query#Custom_Field_Parameters)
440440

441441
### limit($limit)
442442

@@ -448,7 +448,7 @@ Set the number of results to get back from the query.
448448

449449
Sets the `posts_per_page` argument in `WP_Query`.
450450

451-
_Reference:_ [_WP_Query - Pagination Parameters_](https://codex.wordpress.org/Class_Reference/WP_Query#Pagination_Parameters)\_\_
451+
_Reference:_ [_WP_Query - Pagination Parameters_](https://codex.wordpress.org/Class_Reference/WP_Query#Pagination_Parameters)
452452

453453
### offset($offset)
454454

@@ -460,7 +460,7 @@ Set the number of results to displace or pass over.
460460

461461
Sets the `offset` argument in `WP_Query`.
462462

463-
_Reference:_ [_WP_Query - Pagination Parameters_](https://codex.wordpress.org/Class_Reference/WP_Query#Pagination_Parameters)\_\_
463+
_Reference:_ [_WP_Query - Pagination Parameters_](https://codex.wordpress.org/Class_Reference/WP_Query#Pagination_Parameters)
464464

465465
### orderBy($orderBy, $order = 'asc')
466466

@@ -477,7 +477,7 @@ Sets the `orderby` and `order` arguments in `WP_Query`.
477477
$query->orderBy('title', 'asc');
478478
```
479479

480-
_Reference:_ [_WP_Query - Order & Orderby Parameters_](https://codex.wordpress.org/Class_Reference/WP_Query#Order_.26_Orderby_Parameters)\_\_
480+
_Reference:_ [_WP_Query - Order & Orderby Parameters_](https://codex.wordpress.org/Class_Reference/WP_Query#Order_.26_Orderby_Parameters)
481481

482482
### orderByMeta($metaKey, $order = 'asc', $type = null)
483483

@@ -489,7 +489,7 @@ _Reference:_ [_WP_Query - Order & Orderby Parameters_](https://codex.wordpress.o
489489

490490
Sets the `orderby` argument for `WP_Query` to `meta_value` when ordering strings, and `meta_value_num` when ordering numbers.
491491

492-
_Reference:_ [_WP_Query - Order & Orderby Parameters_](https://codex.wordpress.org/Class_Reference/WP_Query#Order_.26_Orderby_Parameters)\_\_
492+
_Reference:_ [_WP_Query - Order & Orderby Parameters_](https://codex.wordpress.org/Class_Reference/WP_Query#Order_.26_Orderby_Parameters)
493493

494494
### as($postClass)
495495

@@ -520,7 +520,7 @@ $events = Event::get();
520520

521521
:::
522522

523-
_Reference:_ [_Timber - get_posts()_](https://timber.github.io/docs/reference/timber/#get-posts)\_\_
523+
_Reference:_ [_Timber - get_posts()_](https://timber.github.io/docs/reference/timber/#get-posts)
524524

525525
### get()
526526

0 commit comments

Comments
 (0)