Ante todo, el titulo esta así por q el sistema no me dejaba poner mi titulo normal.
El siguiente codigo es una pagina q estoy ayudando a acomodar y utiliza plugins de wordpress.
Código PHP:
Ver original<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);
$mi_img=substr(the_content2
('More...'),$var_pos,$var_pos2+1); //hasta aqui con <img .... /> $mi_img_ori= $mi_img;
// echo "++++-+++".$mi_img."++++-+++";
$var_pos=stripos($mi_img,'src=')+5; $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
?>
Mi duda es la siguiente, cuando muestro la pagina, el articulo, dígase la entrada, se muestra con un ¨more...¨, cuando en realidad quiero ver el articulo completo. Que parte del codigo debo modificar, creo q tiene q ver algo con the_content2, pero mor mas vueltas que le he dado no doy con la solución. Ayuda por favor.:stress: