Skip to content

Commit

Permalink
Proper json syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
dshanske committed Oct 7, 2024
1 parent 21dc57b commit 61dad72
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion includes/micropub/class-synprovider-micropub.php
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,9 @@ public function post_to_mf2( $post ) {

if ( ! empty( $content ) ) {
$mf2['properties']['content'] = array(
'html' => $content,
array(
'html' => $content,
)
);
}

Expand Down

0 comments on commit 61dad72

Please sign in to comment.