Skip to content

Instantly share code, notes, and snippets.

View randalio's full-sized avatar

Randal P randalio

  • Randal.io
  • Philadelphia, PA
  • 21:41 (UTC -04:00)
View GitHub Profile
@randalio
randalio / wpai_import_paragraph_block.php
Last active September 21, 2024 21:01
Import text as Paragraph Block using WP All Import
function wpai_import_paragraph_block($paragraph_text){
$output = "";
$output .= '<!-- wp:paragraph \{"placeholder":"'.$paragraph_text.'"\} -->';
$output .= "\n";
$output .= '<p>'.$paragraph_text.'</p>';
$output .= "\n";
$output .= '<!-- /wp:paragraph -->';
return $output;