SKU: WPBRUCE
Catégorie : ,
Étiquettes :

Hello Bruce 2.0.0

Version : 2.0.0
Mises à jour disponibles : 1 an

Générateur d’images enrichit pour toutes vos publications WordPress, personnalisable et sécurisé. Pas le temps de créer un visuel pour vos publications sur les réseaux ? Pas de panique, Hello Bruce vous permet de générer vos images au bon format pour chaque réseau en un clic !

49,00

Cet outil est un générateur d’image personnalisées de tous vos articles WordPress.

Génère tous les formats des réseaux sociaux en 1 clic avec un template personnalisable :

  • Sélection de l’article
  • Sélection du format pour les réseaux sociaux
  • Couleur de texte et fond
  • Personnalisation du titre
  • Personnalisation de la date
  • Personnalisation de l’extrait
  • Personnalisation de la catégorie

Formats proposés pour les réseaux sociaux :

  • 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
Nom
Hello Bruce
Dernière activité
5 heures
Créé
1 an

hello-bruce-2.0.0.zip

Taille
43 Ko
Fichier

Vous n’avez pas encore commandé ce produit

Ajouter au panier

Futures versions :

v3

v4

Versions :

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);