Visualizzazione risultati 1 fino 8 di 8

Discussione: [WordPress] Non riesco a visualizzare interamente gli articoli in home...

  1. #1
    Guest

    Predefinito [WordPress] Non riesco a visualizzare interamente gli articoli in home...

    ciao ragazzi, è successo un piccolo problemino con wordpress...
    se notate dal sito http://www.copyleft.altervista.org gli articoli in home sono smorzati e non c'è un modo per eliminare il tag "more" permanentemente, quindi non visualizza gli articoli per intero e non visualizza le immagini postate fino a quando non apri l'articolo interamente con tutti i commenti...
    come posso risolvere questo problema???

  2. #2
    Guest

    Predefinito

    Entra nel pannello amministrativo di Wordpress, nella colonna laterale trovi un link "Editor". Cliccaci sopra e seleziona il file index.php (pagina principale).
    Si aprirà una pagina con del codice, cerca il seguente pezzo (qualcosa del genere):
    Codice:
    <?php the_excerpt(); ?>
    e sostituiscilo con:
    Codice:
    <?php the_content(); ?>

  3. #3
    Guest

    Predefinito

    veramente non c'è nessun pezzo di codice del genere all'interno della index.php ne nel tema ecologist e nemmeno in quello di default di wordpress... come faccio??? vi posto il codice della index di ecologist...

    Codice:
    <?php get_header(); ?>
    <div id="main" class="g15 alpha">
    <?php if (have_posts()) : while (have_posts()) : the_post(); ?>
    <div class="post">
    <div class="pt"><h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent link to <?php the_title(); ?>"><?php the_title(); ?></a></h2></div>
    <div class="meta"><?php the_time('F j, Y'); ?> &middot; <?php the_category(', ') ?></div>
    <div class="text"><?php the_content_rss('', TRUE, '', 200); ?>
    <span class="more">&nbsp;&nbsp;<a href="<?php echo get_permalink(); ?>">Read the rest of the entry...</a></span>
    <div style="float:right;"><?php comments_popup_link('(No comments)', '1 comment', '% comments'); ?></div>
    </div>
    </div>
    <!--
     <?php trackback_rdf(); ?>
     -->
    <?php endwhile; ?>
    <div class="navigation">
    <div class="alignleft"><?php next_posts_link('&larr; Older entries') ?></div>
    <div class="alignright"><?php previous_posts_link('| Newer entries &rarr;') ?></div>
    </div>
    <?php else : ?>
    <?php include(TEMPLATEPATH."/notfound.php");?>
    <?php endif; ?>
    </div>
    <?php include(TEMPLATEPATH."/sidebar.php");?>
    </div>
    <div class="clear"></div>
    <?php get_footer(); ?>

  4. #4
    Guest

    Predefinito

    Ok, ho trovato il pezzo che devi sostituire:
    Codice PHP:
    <?php the_content_rss('', TRUE, '', 200); ?>
    Al suo posto metti questo:
    Codice PHP:
    <?php the_content(); ?>

  5. #5
    Guest

    Predefinito

    yesss risolto... grazieeeeee ^^ ora gli articoli si visualizzano per intero e visualizza le immagini... nel caso voglio troncarli in un punto il tag more funziona???

  6. #6
    Guest

    Predefinito

    Il tag more quello che selezioni nell'editor di un articolo, si.
    Codice:
    <!-- more -->

  7. #7
    Guest

    Predefinito

    ciao ho lo stesso problema ma sembra che sia cambiato qualcosa da 1anno fa a sta parte anche perchè non trovo niente ti metto qui il codice

    Codice PHP:
    <?php get_header(); ?>

    <?php if(is_front_page() & !is_paged()){ get_template_part( 'includes/header-slider'); } ?>

    <?php
    /////////////////////////////////////////////
    // Setup Default Variables
    /////////////////////////////////////////////
    ?>

    <?php global $post_layout, $hide_title, $hide_image, $hide_title, $hide_meta, $hide_date, $display_content; ?>
    <?php $layout
    = themify_get('setting-default_layout'); /* set default layout */ if($layout == '' ) : $layout = 'sidebar1'; endif; ?>
    <?php $post_layout
    = themify_get('setting-default_post_layout'); /* set default post layout */ if($post_layout == ''): $post_layout = 'list-post'; endif; ?>
    <?php $page_title
    = themify_get('setting-hide_page_title'); ?>
    <?php $hide_title
    = themify_get('setting-default_post_title'); ?>
    <?php $hide_image
    = themify_get('setting-default_post_image'); ?>
    <?php $hide_meta
    = themify_get('setting-default_post_meta'); ?>
    <?php $hide_date
    = themify_get('setting-default_post_date'); ?>

    <?php $display_content = themify_get('setting-default_layout_display'); ?>
    <?php $post_image_width
    = themify_get('image_width'); ?>
    <?php $post_image_height
    = themify_get('image_height'); ?>
    <?php $page_navigation
    = themify_get('hide_navigation'); ?>
    <?php $posts_per_pages
    = themify_get('posts_per_page'); ?>


    <?php

    /////////////////////////////////////////////
    // Set Default Image Sizes
    /////////////////////////////////////////////

    $content_width = 918;
    $sidebar1_content_width = 600;

    // Grid4
    $grid4_width = 194;
    $grid4_height = 140;

    // Grid3
    $grid3_width = 272;
    $grid3_height = 180;

    // Grid2
    $grid2_width = 428;
    $grid2_height = 250;

    // List Large
    $list_large_image_width = 600;
    $list_large_image_height = 390;

    // List Thumb
    $list_thumb_image_width = 200;
    $list_thumb_image_height = 200;

    // List Grid2 Thumb
    $grid2_thumb_width = 100;
    $grid2_thumb_height = 90;

    // List Post
    $list_post_width = 908;
    $list_post_height = 400;


    ///////////////////////////////////////////
    // Setting image width, height
    ///////////////////////////////////////////

    global $width, $height;

    if(
    $post_layout == 'grid4'):

    $width = $grid4_width;
    $height = $grid4_height;

    elseif(
    $post_layout == 'grid3'):

    $width = $grid3_width;
    $height = $grid3_height;

    elseif(
    $post_layout == 'grid2'):

    $width = $grid2_width;
    $height = $grid2_height;

    elseif(
    $post_layout == 'list-large-image'):

    $width = $list_large_image_width;
    $height = $list_large_image_height;

    elseif(
    $post_layout == 'list-thumb-image'):

    $width = $list_thumb_image_width;
    $height = $list_thumb_image_height;

    elseif(
    $post_layout == 'grid2-thumb'):

    $width = $grid2_thumb_width;
    $height = $grid2_thumb_height;

    elseif(
    $post_layout == 'list-post'):

    $width = $list_post_width;
    $height = $list_post_height;

    else:

    $width = $list_post_width;
    $height = $list_post_height;

    endif;

    if(
    $layout == "sidebar1" || $layout == "sidebar1 sidebar-left"):

    $ratio = $width / $content_width;
    $aspect = $height / $width;
    $width = round($ratio * $sidebar1_content_width);
    if(
    $height != '' && $height != 0):
    $height = round($width * $aspect);
    endif;

    endif;
    ?>

    <!-- layout-container -->
    <div id="layout" class="clearfix <?php echo $layout; ?>">

    <!-- content -->
    <div id="content" class="<?php echo $post_layout; ?>">

    <?php
    /////////////////////////////////////////////
    // Search Title
    /////////////////////////////////////////////
    ?>
    <?php if(is_search()): ?>
    <h1 class="page-title"><?php _e('Search Results for:','themify'); ?> <em><?php echo $s; ?></em></h1>
    <?php endif; ?>

    <?php
    /////////////////////////////////////////////
    // Category Title
    /////////////////////////////////////////////
    ?>
    <?php if(is_category() || is_tag()): ?>
    <h1 class="page-title category-title"><?php single_cat_title(); ?></h1>
    <?php endif; ?>

    <?php
    /////////////////////////////////////////////
    // Default query categories
    /////////////////////////////////////////////
    ?>
    <?php $query_cats = themify_get('setting-default_query_cats'); ?>
    <?php if(($query_cats !="") && !is_search()): ?>
    <?php query_posts($query_string . '&cat='.$query_cats); ?>
    <?php endif; ?>

    <?php
    /////////////////////////////////////////////
    // Loop
    /////////////////////////////////////////////
    ?>
    <?php if (have_posts()) : ?>

    <?php while (have_posts()) : the_post(); ?>

    <?php if(is_search()): ?>
    <?php get_template_part( 'includes/loop','search'); ?>
    <?php else: ?>
    <?php get_template_part( 'includes/loop','index'); ?>
    <?php endif; ?>

    <?php endwhile; ?>

    <?php get_template_part( 'includes/pagination'); ?>

    <?php
    /////////////////////////////////////////////
    // Error - No Page Found
    /////////////////////////////////////////////
    ?>

    <?php else : ?>

    <p><?php _e( 'Sorry, nothing found.', 'themify' ); ?></p>

    <?php endif; ?>

    </div>
    <!--/content -->

    <?php
    /////////////////////////////////////////////
    // Sidebar
    /////////////////////////////////////////////
    ?>

    <?php if ($layout != "sidebar-none"): get_sidebar(); endif; ?>

    </div>
    <!-- layout-container -->

    <?php get_footer(); ?>

  8. #8
    Guest

    Predefinito

    Ciao a tutti, ho trovato questo post nelle FAQ, quindi mi accodo; ovviamente, ho lo stesso problema.
    Questo è il codice della index.php:

    <?php
    /**
    * The main template file.
    *
    * This is the most generic template file in a WordPress theme and one of the
    * two required files for a theme (the other being style.css).
    * It is used to display a page when nothing more specific matches a query.
    * For example, it puts together the home page when no home.php file exists.
    *
    * Learn more: http://codex.wordpress.org/Template_Hierarchy
    *
    * @package WordPress
    * @subpackage WPTuts WPExplorer Theme
    * @since WPTuts 1.0
    */

    get_header(); ?>

    <div id="primary" class="content-area clr">
    <div id="content" class="site-content left-content clr" role="main">
    <?php if ( have_posts() ) { ?>
    <div id="blog-wrap" class="clr">
    <?php while ( have_posts() ) : the_post(); ?>
    <?php get_template_part( 'content', get_post_format() ); ?>
    <?php endwhile; ?>
    </div><!-- #post -->
    <?php wpex_pagejump(); ?>
    <?php } else { ?>
    <?php get_template_part( 'content', 'none' ); ?>
    <?php } ?>
    </div><!-- #content -->
    <?php get_sidebar(); ?>
    </div><!-- #primary -->

    <?php get_footer(); ?>
    Grazie.

Regole di scrittura

  • Non puoi creare nuove discussioni
  • Non puoi rispondere ai messaggi
  • Non puoi inserire allegati.
  • Non puoi modificare i tuoi messaggi
  •