We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0e710d0 commit dab2618Copy full SHA for dab2618
includes/collection/class-users.php
@@ -80,7 +80,7 @@ public static function get_by_username( $username ) {
80
81
// check for application user.
82
if ( 'application' === $username ) {
83
- return self::get_by_id( self::APPLICATION_USER_ID );
+ return new Application();
84
}
85
86
// check for 'activitypub_username' meta
includes/model/class-application.php
@@ -197,4 +197,8 @@ public function get_summary() {
197
)
198
);
199
200
+
201
+ public function get_canonical_url() {
202
+ return \home_url();
203
+ }
204
0 commit comments