Skip to content

Instantly share code, notes, and snippets.

@vu2
Last active August 4, 2016 20:27
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/bc5c4e15ff221b03d113422bd85d9732 to your computer and use it in GitHub Desktop.
Save vu2/bc5c4e15ff221b03d113422bd85d9732 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($(this).html() + text);
return false;
}
});
});
});
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment