Skip to content

Commit

Permalink
Wrap image in float block
Browse files Browse the repository at this point in the history
  • Loading branch information
MlKilderkin committed Mar 11, 2024
1 parent 013492e commit 66db8d2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .deploy/ucsc-news-migration/src/Import/Processors/Post.php
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ protected function process_post_meta( int $post_id, array $meta_data = [], bool

wp_update_post( [
'ID' => $post_id,
'post_content' => $injected_html . $post->post_content,
'post_content' => '<div style="float: right;">' . $injected_html . '</div>' . $post->post_content,
] );

continue;
Expand Down

0 comments on commit 66db8d2

Please sign in to comment.