• I have this code

    <?php
    query_posts(array (‘category_name’ => ‘programaciones’, ‘posts_per_page’ => -1));
    while (have_posts()) : the_post();
    ?>
    <h3 class=”accordion”>
    <img width=”25px” height=”25px” src=”<?php echo wp_get_attachment_thumb_url(get_post_thumbnail_id($post->ID));?>”>
    ” rel=”bookmark” title=”Permanent Link to <?php the_title_attribute(); ?>”><?php the_title(); ?>
    </h3>
    <?php
    echo ‘<div class=”container”>’;
    echo ‘<div class=”content”>’;
    ?>

    Error
    Parse error: syntax error, unexpected end of file in C:\xampp\htdocs\gn360_m\wp-content\plugins\exec-php\includes\runtime.php(42) : eval()’d code on line 12

    Please help me

Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘PHP include help’ is closed to new replies.