Új hozzászólás Aktív témák

  • martin66

    senior tag

    Sziasztok,

    Van egy plguinom, mely két tartalom közé ékelődik be. De én azt szeretném, hogy 2. tartalom után jelenjen meg. Szerintetek ez megvalósítható?

    A két tartalom php kódja a téma fájljaiból kimásolva:
    <?php } ?>
    <?php if (strlen($post->post_content) > 0) { ?>
    <div class="intro" itemprop="description">
    <?php the_content(); ?>
    </div>

    <?php } ?>
    <?php if (count($recipe_instructions) > 0) { ?>
    <div class="instructions" itemprop="recipeInstructions">
    <ol>
    <?php
    $instructions_array = unserialize($recipe_instructions);
    for ( $i = 0; $i < count($instructions_array); $i++ ) { $instruction = $instructions_array[$i]['instruction'];
    echo '<li>';
    echo $instruction;
    echo '</li>';
    }?>
    </ol>
    </div>

    (Képet is mellékeltem mert nem szép, ahogy ide beillesztette)

    A baj, pedig az, hogy ez mögé illeszti be a plugin magát: <?php the_content(); ?>. A recipe_instructions lezárt div után helyett.

    A pluginban szerintem ez a sor felel a beillesztendő helyért.
    // Add WP filter for automatic shortcodes
    add_filter( 'the_content', array( $this, 'filter_content') );

    Ezt át lehet módosítani úgy, hogy a 2. tartalom mögé illessze be a plugin magát?

    [ Szerkesztve ]

Új hozzászólás Aktív témák