Skip to content

Instantly share code, notes, and snippets.

@wasipo
Created September 12, 2018 17:24
Show Gist options
  • Save wasipo/45a92a5a29b48f8cb208c7d8557c460d to your computer and use it in GitHub Desktop.
Save wasipo/45a92a5a29b48f8cb208c7d8557c460d to your computer and use it in GitHub Desktop.
DOMMMM
$image = getFirstImage(get_the_content());
if(!empty($image)) {
$doc = new DOMDocument();
@$doc->loadHTML($image);
$finder = new DomXPath($doc);
$ele = $finder->query("//*[contains(@class, 'alignnone')]")->item(0)->removeAttribute; // <- こいつがエラーするんだ
var_dump($ele);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment