Anuncios Google

[AYUDA] Enlazar con wordpress.

Hola amigos de scenebeta, tengo un problemita, estoy haciendo una practica de wordpress, es un noticiero, pero necestito que en cada entrada, cuando hago click al more... , me envie a un nuevo php con solo esa noticia completa. Cualquier consejo será bien recibido.


Anuncios Google

Opciones de visualización de comentarios

Seleccione la forma que prefiera para mostrar los comentarios y haga clic en «Guardar las opciones» para activar los cambios.
Imagen de Cristian Funky

No te entiendo, podrías dejar

No te entiendo, podrías dejar el link de tu página? 

Saludos!

Por ejemplo, en esta pagina

Por ejemplo, en esta pagina la entrada no me la muestra completa, me la muestra con more...

 

 

-----------------------------------------------------


<html>
<head>
<?php require_once("../wp-load.php");?>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<!-- <link href='http://fonts.googleapis.com/css?family=Droid+Sans' rel='stylesheet' type='text/css'> -->
<link rel="stylesheet" type="text/css" href="ccsdiv.css" />
<title> Practica Div </title>
<?php include("funcionesN.php");?>

</head>
<body bgcolor="#707070">

<?php estructura(1);?>
<?php cuerpo();?>
<?php estructura(2);?> 




<?php 
function cuerpo()
{

$cat=7;
if (isset($_GET['cat'])){$cat=$_GET['cat'];}


?>






<?php $recent = new WP_Query("cat=".$cat."&showposts=1&no_found_rows=1 &hreveron=10");?>



<?php if($recent->have_posts()){ ?>



<?php while($recent->have_posts()) : $recent->the_post();




$var_pos=stripos(the_content2('More...'),'<img');
$var_pos_99i9=$var_pos;



// substr ( string $string , int $start [, int $length ] )
substr(the_content2('More...'),$var_pos);
$var_pos2=stripos(substr(the_content2('More...'),$ var_pos),'>');

$mi_img=substr(the_content2('More...'),$var_pos,$v ar_pos2+1); //hasta aqui con <img .... />
$mi_img_ori= $mi_img;


// echo "++++-+++".$mi_img."++++-+++";
$var_pos=stripos($mi_img,'src=')+5;
$var_pos2=stripos(substr($mi_img,$var_pos),'"');
$mi_img=substr($mi_img,$var_pos,$var_pos2); //hasta aqui solo el src=" ..."

$mi_img=foto_real($mi_img);






?>





<div style="float:left; width:100%; background-color:#efefef">






<div style="float:left; width:100% ">


<div style="float:left; width:100%; background-color:#efefef; margin-left:10px; max-width:85%; clear:both; word-wrap: break-word; " >

<div id="titulo"; style="text-align:center" > <?php echo the_title2();?></div>

</div>

<div style="float:left;width:100%; height:2px; background-color:#efefef" ></div>

<div style="float:left; width:100%; background-color:#efefef; margin-left:10px; max-width:85%; clear:both; word-wrap: break-word; " >

<div id="resumen"> <?php echo the_content2('More...');?> </div>

</div>

</div>
</div>


<!----- separador -->
<div style="float:left;width:100%;height:10px; background-color:#FFFFFF"></div>
<!----- separador -->






<?php endwhile; ?>

<?php
}
?>





<?php

}

?>















</body>
</html>

<?php 
?>

Por ejemplo, en esta pagina

agradeceria q me ayudasen :(

Opciones de visualización de comentarios

Seleccione la forma que prefiera para mostrar los comentarios y haga clic en «Guardar las opciones» para activar los cambios.