Home › Forums › WoodMart support forum › PÁGINA CONTENIDAS CON SOCIAL MEDIA › Reply To: PÁGINA CONTENIDAS CON SOCIAL MEDIA
DelopWeb
Hola.
El motivo de saber donde se sitúan los iconos de redes sociales es que estamos intentando hacer funcionar un tema hijo ya instalado, pero no funciona. Hay que personalizar el functions.php con la función que tenemos instalada?
<?php
function enqueue_styles_child_theme() {
$parent_style = ‘parent-style’;
$child_style = ‘child-style’;
wp_enqueue_style( $parent_style,
get_template_directory_uri() . ‘/style.css’ );
wp_enqueue_style( $child_style,
get_stylesheet_directory_uri() . ‘/style.css’,
array( $parent_style ),
wp_get_theme()->get(‘Version’)
);
}
add_action( ‘wp_enqueue_scripts’, ‘enqueue_styles_child_theme’ );
?>
En el archivo style.css tenemos:
/*
Theme Name: Woodmart Child
Theme URI: http://nombre.com
Description: Modificación Woodmart Child
Author: Nombre
Author URL: Web
Template: woodmart
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: light, dark, two-columns, right-sidebar, responsive-layout, accessibility-ready
Text Domain: woodmart-child
*/
La web se visualiza, pero no funciona el css ni las nuevas reglas php que queremos insertar, modificando las del tema padre.