Themes y Diseño

Foro WordPress » WordPress » Themes y Diseño

ayuda con mi content (5 mensajes)

Acerca de este hilo

Tags

  1. newmesis

    2.0
    Antiguedad: Oct 2010
    Mensajes: 9

    offline

    Publicado hace 1 año
    #

    hola ...Espero que esten bien saludos a todos los que componen este foro..
    lo que pasa es que instale una plantilla a mi wordpress, en la cual venia predeterminado en la portada poner los contenidos de post solo un extracto, lo que quiero es poner los contenidos comletos si cortar ni poner el readmore( seguir leyendo) aqui les dejo la info de mi web:

    versión: WordPress 3.0.1.
    URL: http://leonman.site90.com/
    theme: Polished 1.1
    Plugins activos: Misiek Photo Album,Shadowbox JS,Viper's Video Quicktags
    Mi nivel de conocimientos: Medio

    cabe decir que ya e intentado cambiar el the_excerpt() por the_content() pero no lo encuentro ni en index.php ni en includes/entry.php
    espero que este post lo aya echo bien y me puedan ayudar

  2. skozz

    4.0
    Antiguedad: Sep 2010
    Mensajes: 77

    offline

    Publicado hace 1 año
    #

    Consejo importante: toca lo minimo posible de los includes, que para eso tienes el function.php del theme para filtrarlo todo.

    Sobre tu caso, lo más normal es que si la funcion del extracto o contenido no esté en el index.php del THEME esté en el sigle.php (para las entradas) o en el page.php (para las páginas).

    Espero te sirva de ayuda.

  3. newmesis

    2.0
    Antiguedad: Oct 2010
    Mensajes: 9

    offline

    Publicado hace 1 año
    #

    Consejo importante: toca lo minimo posible de los includes, que para eso tienes el function.php del theme para filtrarlo todo.
    Sobre tu caso, lo más normal es que si la funcion del extracto o contenido no esté en el index.php del THEME esté en el sigle.php (para las entradas) o en el page.php (para las páginas).
    Espero te sirva de ayuda.

    gracias por responder amigo
    y visto mis php de single e page pero no esta el the_excerpt() sino que sale mucho el the_content() aki pongo los codigos

    < div id="wrap" >
        < !-- Main Content-- >
            <img />/images/content-top.gif" alt="content top" class="content-wrap" / >
            < div id="
    content" >
                < !-- Start Main Window -- >
                < div id="
    main" >
                < ?php the_post(); ? >

                    < ?php if (get_option('polished_integration_single_top') < > '' &amp;&amp; get_option('polished_integrate_singletop_enable') == 'on') echo(get_option('polished_integration_single_top')); ? >
                        < div class="
    new_post entry clearfix" >

                            < h1 id="
    post-title" >< ?php the_title(); ? >< /h1 >

                            < ?php if (get_option('polished_postinfo2') < > '') include(TEMPLATEPATH . '/includes/postinfo.php'); ? >

                            < div class="
    postcontent" >

                                < ?php if (get_option('polished_thumbnails') == 'on') { ? >
                                    < ?php $thumb = '';

                                          $width = get_option('polished_thumbnail_width_posts');
                                          $height = get_option('polished_thumbnail_height_posts');
                                          $classtext = 'post_img';
                                          $titletext = get_the_title();

                                          $thumbnail = get_thumbnail($width,$height,$classtext,$titletext,$titletext);
                                          $thumb = $thumbnail["
    thumb"]; ? >

                                    < ?php if($thumb < > '') print_thumbnail($thumb, $thumbnail["
    use_timthumb"], $titletext, $width, $height, $classtext); ? >

                                < ?php }; ? >

                                < ?php the_content(); ? >

                                < ?php wp_link_pages(array('before' = > '< p ><strong>'.__('Pages','Polished').':</strong> ', 'after' = > '< /p >', 'next_or_number' = > 'number')); ? >

                                < ?php edit_post_link(__('Edit this page','Polished')); ? >

                                < ?php if (get_option('polished_integration_single_bottom') < > '' &amp;&amp; get_option('polished_integrate_singlebottom_enable') == 'on') echo(get_option('polished_integration_single_bottom')); ? >
                                < ?php if (get_option('polished_468_enable') == 'on') { ? >
                                    < ?php if(get_option('polished_468_adsense') < > '') echo(get_option('polished_468_adsense'));
                                    else { ? >
                                        <a>"
    ><img />" alt="468 ad" class="foursixeight" / ></a>
                                    < ?php } ? >
                                < ?php } ? >

                                < ?php if (get_option('polished_show_postcomments') == 'on') comments_template('', true); ? >
                            < /div >
                        < /div >
                < /div >
                < !-- End Main -- >

    < ?php get_sidebar(); ? >
    < ?php get_footer(); ? >

    y page

    < ?php if (is_front_page()) { ? >
        < ?php include(TEMPLATEPATH . '/home.php'); ? >
    < ?php } else { ? >
    < ?php get_header(); ? >
        < div id="wrap" >
        < !-- Main Content-- >
            <img />/images/content-top.gif" alt="content top" class="content-wrap" / >
            < div id="
    content" >
                < !-- Start Main Window -- >
                < div id="
    main" >
                < ?php the_post(); ? >

                    < div class="
    new_post entry clearfix" >

                        < h1 id="
    post-title" >< ?php the_title(); ? >< /h1 >
                            < div class="
    postcontent" >
                                < ?php $width = get_option('polished_thumbnail_width_pages');
                                      $height = get_option('polished_thumbnail_height_pages');
                                      $classtext = 'post_img';
                                      $titletext = get_the_title();

                                      $thumbnail = get_thumbnail($width,$height,$classtext,$titletext,$titletext);
                                      $thumb = $thumbnail["
    thumb"]; ? >

                                < ?php if($thumb < > '' &amp;&amp; get_option('polished_page_thumbnails') == 'on') { ? >
                                    < ?php print_thumbnail($thumb, $thumbnail["
    use_timthumb"], $titletext , $width, $height, $classtext); ? >
                                < ?php }; ? >
                                < ?php the_content(); ? >
                                < ?php wp_link_pages(array('before' = > '< p ><strong>'.__('Pages','Polished').':</strong> ', 'after' = > '< /p >', 'next_or_number' = > 'number')); ? >
                                < ?php edit_post_link(__('Edit this page','Polished')); ? >
                                < div class="
    clear" >< /div >

                                < ?php if (get_option('polished_show_pagescomments') == 'on') comments_template('', true); ? >
                            < /div > < !-- end .post -- >
                    < /div >

                < /div >
                < !-- End Main -- >

        < ?php get_sidebar(); ? >
        < ?php get_footer(); ? >
    < ?php } ? >

    [php]

  4. newmesis

    2.0
    Antiguedad: Oct 2010
    Mensajes: 9

    offline

    Publicado hace 1 año
    #

    alguna ayuda plis si no es mucho molestar

  5. Pedro Raul

    5.0
    Antiguedad: Ene 2010
    Mensajes: 812

    offline

    Publicado hace 1 año
    #

    arregla el url de tu hoja de estilos.

    Wordpresslatino.net: ¡Se Brinda ayuda gratis para tu wordpress! -->- CLICK EN MI NICK
    ¡quieres que lo HAGA por ti! ---> CLICK EN MI NICK

Responder

Debes Identificarte para publicar.

Foro WordPress » WordPress » Themes y Diseño