Skip to content

Instantly share code, notes, and snippets.

View natzar's full-sized avatar
🎯
Focusing

Beto natzar

🎯
Focusing
View GitHub Profile
@natzar
natzar / gist:48fdc33b0bda8fafd8053d8b7420bd52
Last active October 24, 2023 07:31
[ai_image prompt="Descripción de la imagen que quieres"]
Shortcode:
[ai_image prompt="Descripción de la imagen que quieres"]
Añadir en functions.php:
function generate_image_from_prompt($atts) {
$atts = shortcode_atts(array('prompt' => ''), $atts);
$prompt = $atts['prompt'];
// Lógica para obtener la imagen de la API en función del prompt
@natzar
natzar / semantic-ui-fix-inverted-menu.css
Created December 22, 2018 09:33
Fix Semantic UI Inverted Menu and Inverted Dropdowns.
.ui.menu.inverted .ui.dropdown .menu.inverted>.item{
background: #1b1c1d;
color:white;
}
.ui.menu.inverted .dropdown.item .menu {
background: #1b1c1d;
color:white;
}
.ui.menu.inverted .ui.dropdown .menu>.item:hover {