Skip to content

Commit 0ed2b7b

Browse files
committed
fix broken links
1 parent 00b942b commit 0ed2b7b

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

v1/controllers.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ Because WordPress does not use an MVC architecture TypeRocket spoofs this design
103103

104104
## Dynamically Set Middleware
105105

106-
There are times when you do not want the global resource [middleware](/docs/v1/middleware/) stack to be called for specific methods of a controller by the [kernel](/docs/v1/kernel/). To dynamically set the middleware stack use the `__construct()` method on a controller and the `addMiddleware()` method.
106+
There are times when you do not want the global resource [middleware](/docs/v1/middleware/) stack to be called for specific methods of a controller by the [kernel](/docs/v1/middleware/). To dynamically set the middleware stack use the `__construct()` method on a controller and the `addMiddleware()` method.
107107

108108
For example, take a member controller where you want to have different middleware for the login methods.
109109

v1/post-types.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ To get started with post types using TypeRocket, read these docs.
1717

1818
1. [Post Types: Making](/docs/v1/post-types-making/)
1919
2. [Post Types: Theming](/docs/v1/post-types-theming/)
20-
3. [Post Types: Secured](/docs/v1/post-types-secured/)
20+
3. [Post Types: Securing](/docs/v1/post-types-securing/)
2121

2222
## Adding a Post Type
2323

v1/theme-options.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -144,6 +144,6 @@ If you decide to use advanced fields like repeaters and galleries, you can use `
144144

145145
Now that you have the most basic setup, you can start adding more tabs and fields.
146146

147-
- [Tabs API](/docs/v1/layout-tabs/)
147+
- [Tabs API](/docs/v1/tabs/)
148148
- [Forms API](/docs/v1/forms/) (fields are near the bottom)
149149
- [Fields API](/docs/v1/fields/)

v4/javascript-hooks.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ TypeRocket comes with two callbacks to help you extend the core JavaScript funct
77

88
## HTTP
99

10-
The HTTP callback is designed to let you modify and respond to the [REST API](/docs/v4/rest-api/) JSON response.
10+
The HTTP callback is designed to let you modify and respond to the [REST API](/docs/v4/json-api/) JSON response.
1111

1212
```javascript
1313
TypeRocket.httpCallbacks.push(function(response) {

v4/theme-options.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,8 @@ You can use any of the fields that come with the [forms api](/docs/v4/forms/). T
4343
14. Files
4444
15. Galleries
4545
16. Items lists
46-
17. [Matrix Fields](/docs/v4/matrix-field/)
47-
18. [Builder Fields](/docs/v4/builder-field/)
46+
17. Matrix Fields
47+
18. [Builder Fields](/docs/v4/builder/)
4848
19. [Repeaters](/docs/v4/repeater-field/)
4949
20. Search fields
5050

v5/post-types.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ To get started with post types using TypeRocket, read these docs.
1717

1818
1. [Post Types: Making](/docs/v5/post-types-making/)
1919
2. [Post Types: Theming](/docs/v5/post-types-theming/)
20-
3. [Post Types: Secured](/docs/v5/post-types-secured/)
20+
3. [Post Types: Secured](/docs/v5/post-types-securing/)
2121

2222
## Adding a Post Type
2323

0 commit comments

Comments
 (0)