Ver Mensaje Individual
  #17 (permalink)  
Antiguo 22/02/2011, 06:53
Xijamk
 
Fecha de Ingreso: febrero-2011
Mensajes: 16
Antigüedad: 13 años, 9 meses
Puntos: 1
Respuesta: [Problema] Eliminar enlace permanente de la página

Los unicos que encontre con permalink son en function y son estos.. :

Código:
	if($result !== ''){
		$result = '<a href="'.get_permalink($post->ID).'" title="'.$title.'">'.$result.'</a>';
	}
	return $result;
Código:
function art_get_post_content() {
  global $post;
  ob_start();
  if(is_single() || is_page()) {
    echo art_get_the_content(__('Read the rest of this entry &raquo;', THEME_NS)); 
    wp_link_pages(array('before' => '<p><strong>Pages:</strong> ', 'after' => '</p>', 'next_or_number' => 'number')); 
	} else {
    echo art_get_the_excerpt(__('Read the rest of this entry &raquo;', THEME_NS), 
      get_permalink($post->ID), 
      art_option('metadata.excerpt_words'), 
      art_option('metadata.excerpt_use_tag_filter') ? explode(',',art_option('metadata.excerpt_allowed_tags')) : null, 
      art_option('metadata.excerpt_min_remainder'),  
      art_option('metadata.excerpt_auto'));
	}
	return ob_get_clean();
}
Código:
function art_get_post_title() {
    return art_parse_template("post_title", array(
      'post_link'       =>   get_permalink($post->ID),
	    'post_link_title' =>   sprintf(__('Permanent Link to %s', THEME_NS), the_title_attribute('echo=0')),
	    'post_title'      =>   get_the_title(),
	    'template_url'    =>   get_bloginfo('template_url')
	    ));
}
Perdon por todos los post seguidos, pero sino no me entraba, se me hace que es el ultimo no?, pero desde donde deberia borrar y hasta donde sin que se cague el theme?