Ver Mensaje Individual
  #4 (permalink)  
Antiguo 15/09/2014, 04:40
Avatar de AlejandroGalvez
AlejandroGalvez
 
Fecha de Ingreso: noviembre-2013
Mensajes: 189
Antigüedad: 10 años, 5 meses
Puntos: 49
Respuesta: Cambiar url en documento php

Si es un slider que muestra noticias probablemente la estructura se genere mediante un bucle PHP utilizando una consulta WP_Query. Si dices que trae el slider en home, deberías buscar en home.php, front-page.php o index.php. La apariencia del bucle será algo parecida a:

Código PHP:
Ver original
  1. <?php
  2.  
  3. if ( have_posts() ) {
  4.  
  5.     while ( have_posts() ) {
  6.        
  7.         //AQUÍ DEBERÍAN MOSTRARSE LAS IMÁGENES Y SUS ENLACES
  8.        
  9.     }
  10.    
  11. }
  12.  
  13. ?>

Pero con mucho más contenido claro. Deberías localizar el enlace <a> y eliminarlo o comentarlo si no quieres que enlace a ningún sitio.