Visuel produit : Hello Bruce
SKU: WPBRUCE
Catégorie : ,
Étiquettes :

Hello Bruce 2.0.0

Version: 2.0.0
Updates available: 1 year

An enhanced image generator for all your WordPress posts – customisable and secure. Don’t have time to create visuals for your social media posts? Don’t panic – Hello Bruce lets you generate images in the right format for each platform with just one click!

49,00

This tool generates custom images for all your WordPress posts.

Generate all social media formats in one click using a customisable template:

  • Select a post
  • Selecting the format for social media
  • Text and background colour
  • Customize title
  • Customize date
  • Customize extract
  • Customize the category

Recommended formats for social media:

  • Brut : 1080 x 1350 pixels
  • Facebook : 1200 x 630 pixels -> 1920 x 1080
  • Linkedin : 1200 x 1200 pixels -> 1200 x 627
  • Instagram : 1080 x 1350 pixels
  • X  : 1600 x 900 pixels -> 1200 x 675
  • Pinterest : 1000 x 1500
  • Tiktok : 1200 x 628 ou 1080 x 1920
  • Story / Reel : 1080 x 1920 pixels

 

 

Name
Hello Bruce
Last activity
3 weeks
Created
1 year

hello-bruce-2.0.0.zip

Size
43 Ko
File

You have not purchased this product yet.

Add to cart

Future versions:

v3

v4

Releases:

2.0.0

  • Factorization of layouts
  • New URL to generate images on the fly
  • Add a Settings link on the plugin list page, plugin + banner generator
  • Add option from theme.json in FSE context
  • Add phpcs tests
  • Fix crash (implode in the wrong way)
  • Add constants for path/url
  • Add bump and todo utilities for developpment
  • Locally save generated images
  • Add brucebanner_body_classes filter hook

V1.3

V1.2

V1.1

V1.0

Hello Bruce

Contributors: bastho, florianlecocq, leroysabrina, agencenous
Tags: png, image, generator, social media
Requires at least: 5.3
Requires PHP: 7.4
Tested up to: 5.9
Stable tag: 1.3
License: GPLv2
License URI: https://www.gnu.org/licenses/gpl-2.0.html

Generate your social media images from your posts

This plugin will allow you to generate quickly social media images from your posts, without having to master any photo editing tools.

Installation

  1. Upload into the /wp-content/plugins/ directory
  2. Activate the plugin through the ‘Plugins’ menu in WordPress admin
  3. You can start generating in Tools > Banner Generator

Screenshots

  1. Generator page
  2. Generated PNG with changes

Frequently asked questions

  1. Can I generate PNG with my own service ?

Of course, If your service takes HTML as its input. You can use the filter "brucebanner_service_generator" and return the URL of your serveice.

  1. Can I list Custom Type Posts in the select ?

Yes, you can user this filter "brucebanner_posts_args" to change the arguments of the query that retrieves the posts.

Example :


add_filter('brucebanner_posts_args', 'mytheme_brucebanner_all_posts_args');

function brucebanner_all_posts_args($initial_args){
  // ask for all the posts on the site
  return array_merge($initial_args, [
      'post_type' => 'any',
    ]);
}
  1. Can I list the colors of my theme by default in the palettes ?

Yes, you can add to or replace the palettes with the hooks brucebanner_default_bg_colors and brucebanner_default_text_colors

For the background :

add_action( 'brucebanner_default_bg_colors', 'mytheme_brucebanner_default_bg_colors' );
function mytheme_brucebanner_default_bg_colors() {
	return [
			'#6d1e84',
			'#54366f',
			'#e40043',
			'#92BFC5',
			'#000000',
			'#ffffff',
		];
}

For the text :

add_action( 'brucebanner_default_text_colors', 'mytheme_brucebanner_default_text_colors' );
function mytheme_brucebanner_default_text_colors() {
	return [
			'#6d1e84',
			'#54366f',
			'#e40043',
			'#92BFC5',
			'#000000',
			'#ffffff',
		];
}
  1. Can I change the style applied on the banner ?

Yes, you can override the CSS, by adding some CSS with this hook :

add_action('brucebanner_banner_head', 'mytheme_brucebanner_add_generated_styles', 11,1);
function mytheme_brucebanner_add_generated_styles($sanitized_get){
  echo '<style>
    /* your style here */
  </style>';
}

You can also remove the style given with this plugin by doing this :

remove_action('brucebanner_banner_head', 'brucebanner_add_generated_styles', 10, 1);

Online documentation

View the doc

Read documentation

Your questions, our answers

Consulter la faq

View FAQ