Bloke

Member

Forum Replies Created

  • In reply to: Is there a function conflict

    #39527

    I turned off all my plugins and its still doing it. Is there something in the database that might save a setting I could check? Like a screen options setting?

    In reply to: Is there a function conflict

    #39525

    I switched themes and it still only shows exactly half of the list of posts.

    In reply to: Is there a function conflict

    #39524

    Yes its strange that it would show exactly half of the list of posts. I am thinking its a pagination issue.

    In reply to: Is there a function conflict

    #39522

    I am developing a widget that will allow you to use a drop down to select from a list of posts from one category inside the admin area.

    <label for="<?php echo $this->get_field_id('title'); ?>"><?php _e( 'Person of Month'); ?>:</label>
    <select name="<?php echo $this->get_field_name(''); ?>" id="<?php echo $this->get_field_id(''); ?>" class="widefat">
    <?php
    $first_query = new WP_Query('cat=10&posts_per_page=-1');

    // The Loop
    while ( $first_query->have_posts() ) : $first_query->the_post(); ?>
    <option value=""><?php $first_query->the_post(). the_title() ?></option>
    <?php endwhile;

    wp_reset_query();

    ?>
    </select>

    In reply to: Custom page of one category posts

    #33093

    Yes I know CSS very well. It was more of the query and PHP format of the page. I figured it out. I copied archive.php and modified it and saved it as a template. Thanks.

    In reply to: Can't show social media icons in header

    #28763

    I figured it out. I was pressing save. You need to click on “add new social media profile”.

    In reply to: remove the sub page in the home

    #14064

    I figured it out. Display> Excerpts Display options.

    In reply to: remove the sub page in the home

    #14063

    Coco23gt, I like how you did your site with a summary post at the bottom. http://hopeoflifeintl.org/ How did you control that? As a default mine list full posts of the category I selected. I want just like yours but maybe 3-5 posts just summary. Thanks.

Viewing 8 posts - 1 through 8 (of 8 total)