Skip to content

Instantly share code, notes, and snippets.

@vu2
Created August 4, 2016 20:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vu2/eadb18bed3cab5c70630e22e5879ddd0 to your computer and use it in GitHub Desktop.
Save vu2/eadb18bed3cab5c70630e22e5879ddd0 to your computer and use it in GitHub Desktop.
<script>
$(function(){
var text = "ここに適当な文章を入れて下さい";
$('.entry-content').each(function(){
$(this).children("p").each(function(){
if($(this).find('img').length != 1){
$(this).html(text + "</p><p>" + $(this).html());
return false;
}
});
});
});
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment