För att lägga till widgets för anpassade stilar till din WordPress-webbplats, följ dessa steg:
Steg 1:Skapa en anpassad widgetklass
1. Öppna ditt temas functions.php-fil.
2. Lägg till följande kod för att skapa en ny widgetklass:
``` php
class Custom_Styles_Widget utökar WP_Widget {
offentlig funktion __construct() {
$widget_ops =array(
'classname' => 'anpassade stilar-widget',
'description' => 'Visar anpassade stilar.',
);
parent::__construct( 'custom-styles-widget', 'Custom Styles Widget', $widget_ops );
}
public function widget( $args, $instance ) {
// Visa widgeten.
echo '
'. $instance['custom_styles'] . '
';
}
public function form( $instance ) {
// Visa widgetformuläret.
$custom_styles =( isset( $instance['custom_styles'] ) ) ? esc_attr( $instans['anpassade_stilar'] ) :'';
eko'
';
}
offentlig funktionsuppdatering( $new_instance, $old_instance ) {
// Spara widgetinställningarna.
$instans =$old_instance;
$instance['custom_styles'] =sanitize_textarea_field( $new_instance['custom_styles']);
returnera $instans;
}
}
```
Steg 2:Registrera den anpassade widgeten
1. Inuti samma functions.php-fil lägger du till följande kod för att registrera den anpassade widgeten:
``` php
add_action( 'widgets_init', function() {
register_widget( 'Custom_Styles_Widget' );
} );
```
Steg 3:Lägg till den anpassade widgeten i ett sidofält
1. Gå till Utseende> Widgets i din WordPress-adminpanel.
2. Dra och släpp widgeten för anpassade stilar till en sidofält.
3. Konfigurera widgetinställningarna efter behov.
Widgeten för anpassade stilar visar nu de anpassade stilar du anger i widgetinställningarna.