Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Meme Generator Snippet

This is an example of the meme generator in documents

 //Done With  Axios
 const fetchMeme = () => {
    Axios.get('https://meme-api.com/gimme').then(
      (res) => {
        console.log(res.data)
        getmeme(res.data.url)
        gettitle(res.data.title)
        getsubreddit(res.data.subreddit)
        getauthor(res.data.author)
      }
    );
  };