How to Embed p5.js Sketches in WordPress Using Plugins: A Comprehensive Guide

The integration of interactive p5.js sketches into WordPress websites can significantly enhance user engagement through creative coding and generative art. This report explores various WordPress plugins specifically designed for embedding p5.js sketches, providing step-by-step instructions for each method.

Easy p5.js Block: The Simplest Approach

The Easy p5.js Block plugin offers perhaps the most straightforward method for integrating p5.js sketches into WordPress sites using the Gutenberg block editor.

Installation and Usage

After installing and activating the plugin through the WordPress plugin directory, the process is remarkably simple:

  1. Create a new post or page, or edit an existing one
  2. Add a new block by clicking the “+” icon
  3. Search for and select the “p5.js” block
  4. Enter your p5.js code directly into the block
  5. Preview your sketch as you edit

According to the plugin description, no additional configuration is required: “Just activate the plugin and add the p5.js block to any page or post to get started”12. The plugin includes p5.js library version 1.7.0 but currently does not include the p5.sound.js libraries.

Canvas Sizing Recommendations

For proper display, it’s “highly recommended to define the height and width of your block in the block settings panel, and use createCanvas() accordingly in your sketch”12. This ensures your sketch appears as intended within your WordPress content.

Interact with the space below by clicking your mouse:

Responsive P5JS for WP: For Responsive Sketches

This plugin specializes in making p5.js sketches responsive, automatically scaling when the browser window is resized.

Installation and Setup Process

  1. Create a new subdirectory in the /uploads/p5js/ directory using FTP or a file manager plugin: /uploads/p5js/[sketch_folder]5
  2. Upload all sketch files (index.html, sketch.js, libraries, etc.) to this directory
  3. Add the shortcode to your post or page:
[p5js sketchfolder=myfirstsketch canvaswidth=566 canvasheight=378 bordersize=1 bordercolor=#aaa][/p5js]

The shortcode requires three attributes:

  • sketchfolder: The name of your p5.js sketch
  • canvaswidth: The width of the sketch (should match your createCanvas() statement)
  • canvasheight: The height of the sketch (should match your createCanvas() statement)

Optional attributes include:

  • bordersize: Border thickness in pixels (default: 0px)
  • bordercolor: Border color (only works when bordersize is defined)59

p5.js WP by Cassia Duske: Advanced Integration

This plugin enables inclusion of p5.js scripts through WordPress shortcodes, encapsulating scripts inside an iframe to prevent conflicts with other content.

Usage Through Shortcodes

The basic shortcode format is [p5jswp] with various attributes. You can embed JavaScript in two ways:

External JavaScript file:

[p5jswp script="https://javascript-file.js"]

Inline JavaScript:

[p5jswp js="console.log("HELLO WORLD");"]

Additional Functionality

The plugin offers several advanced features:

  • Including additional libraries: [p5jswp libraries="URL URL2"]
  • Adding inline CSS: [p5jswp css="html { text-align: center; }]
  • Setting dimensions: Use height and width attributes
  • Adding captions: [p5jswp caption="Hello World"]4

Processing Projects Plugin: For Complete Project Uploads

This plugin takes a different approach, designed for uploading complete Processing (p5.js) projects.

Upload and Display Process

  1. Package your p5.js project as a zip file containing all required files
  2. Upload the zip file through the plugin interface
  3. Display the project using the shortcode: text[pp-shortcode id="0" width="960" height="500"] (Replace “0” with the ID of your uploaded project)10

Embedding Directly from the p5.js Web Editor

If you develop your sketches in the p5.js web editor, you can embed them without specialized plugins:

  1. Go to editor.p5js.org and log in to your account
  2. Save your sketch
  3. Go to file > share
  4. Copy the embed code for the “Embed” option
  5. In your WordPress post, change your editor from “Visual” to “Text”
  6. Paste the code on its own line
  7. Add sizing parameters: style="width: 640px; height: 360px; overflow: hidden;" scrolling="no" frameborder="0"611

Lauren McCarthy’s p5.js-embedder: Another Alternative

This method works by uploading your sketch.js file to WordPress:

  1. Upload the sketch.js file to the WordPress Media Library
  2. Add the file as a link in your post
  3. Switch to “Text” editing mode
  4. Add class='p5-embed' to the link to mark it for processing
  5. Optionally specify dimensions with data-width and data-height attributes2

Conclusion

WordPress offers multiple paths for embedding p5.js sketches, each with different advantages. For Gutenberg editor users, the Easy p5.js Block provides the most straightforward integration. Those needing responsive sketches should consider the Responsive P5JS for WP plugin. For advanced users requiring more control, p5.js WP offers extensive customization options.

When selecting a plugin, consider your specific needs: the simplicity of implementation, responsiveness requirements, and whether you need to incorporate multiple libraries or custom styling. With these tools, you can seamlessly integrate interactive, generative art into your WordPress site, enhancing engagement and visual appeal for your visitors.

Citations:

  1. https://cassiaduske.com/work/p5js-wp
  2. https://ems.andrew.cmu.edu/2016-60212/instructions/embedding-p5-js/index.html
  3. https://stackoverflow.com/questions/29000132/how-do-you-get-p5-js-into-a-website
  4. https://github.com/cass-e-design/p5js-wp-legacy
  5. http://cagewebdev.com/responsive-p5js-for-wp-wordpress-plugin/
  6. https://ems.andrew.cmu.edu/2018_60212f/resources/embedding-p5js/
  7. https://p5js.org/tutorials/
  8. https://arg.wordpress.org/plugins/tags/p5js/
  9. https://wordpress.com/plugins/responsive-p5js-for-wp
  10. https://wordpress.com/plugins/processing-projects
  11. https://decodingnature.nyuadim.com/how-to-embed-p5-js-sketch-in-your-blog-post/
  12. https://wordpress.org/plugins/easy-p5-js-block/
  13. https://www.10web.io/wordpress-plugin/responsive-p5js-for-wp/
  14. http://laythemeforum.com:4567/topic/1675/how-to-embed-p5-js-sketches
  15. https://bruceoutdoors.wordpress.com/2020/05/12/interactive-p5-js-sketches-in-wordpress-via-codepen/
  16. https://github.com/lmccart/p5.js-wp-embedder
  17. https://wordpress.com/plugins/easy-p5-js-block
  18. https://www.reddit.com/r/p5js/comments/jkguol/best_way_to_integrate_p5js_sketches_on_wordpress/
  19. https://wordpress.com/plugins/browse/p5js/
  20. https://weegreenblobbie.com/?p=212
  21. https://www.reddit.com/r/p5js/comments/r8nuqi/someone_worked_with_the_wordpress_plugin/
  22. https://wordpress.com/plugins/browse/p5-js/
  23. https://cass-e.net/2021/03/p5js-wordpress-legacy-update/

Scroll to Top