Forum Replies Created

Viewing 12 replies - 46 through 57 (of 57 total)
  • Thread Starter stew278

    (@stew278)

    Anyone?

    Thread Starter stew278

    (@stew278)

    … ViewLevel 2 that is …

    Thread Starter stew278

    (@stew278)

    I’m having trouble with the coding of that … where do you place it and how is the tag (?) structured??? (Not really that good of documentation on the author’s web site)

    Forum: Fixing WordPress
    In reply to: Post On Date?
    Thread Starter stew278

    (@stew278)

    Thnx

    Forum: Fixing WordPress
    In reply to: Tags within Page?
    Thread Starter stew278

    (@stew278)

    anyone?

    Forum: Fixing WordPress
    In reply to: Tags within Page?
    Thread Starter stew278

    (@stew278)

    I’m having trouble with the <?php wp_list_authors(); ?> tag ….

    I’ve created a new template page (“All Authors”) and have uploaded successfully — I’m able to select it as a Page Template when creating a page, however, I cannot get this tag to work within the template page.

    What am I missing?

    <?php
    /*
    Template Name: All Authors
    */
    ?>
    <?php get_header(); ?>
    <table border="0" cellspacing="0" cellpadding="0">
    <tr>
    <td width="188" valign="top">
    <?php get_sidebar(); ?>
    </td>
    <td width="330" valign="top">
    <div id="content">
    <?php if (have_posts()) : while (have_posts()) : the_post(); ?>
    <div class="post" id="post-<?php the_ID(); ?>">
    <span class="title"><?php the_title(); ?></span>
    <span class="text">
    <br><br>
    <?php the_content('<p class="serif">Read the rest of this page &raquo;</p>'); ?>

    <?php link_pages('<p><strong>Pages:</strong> ', '</p>', 'number'); ?>

    </span>
    </div>
    <div class="authorlist">
    <?php wp_list_authors('optioncount=1&show_fullname=1'); ?>
    </div>
    <?php endwhile; endif; ?>
    <br><br>
    <small><?php edit_post_link('Edit this entry.', '<p>', '</p>'); ?></small>
    </div>
    </td>

    <td width="200" valign="top">
    image
    </td>

    <td width="100%">&nbsp;</td>
    </tr>
    <tr>
    <td colspan="4" width="100%">
    <?php get_footer(); ?>
    </td>
    </tr>
    </table>

    Forum: Fixing WordPress
    In reply to: Tags within Page?
    Thread Starter stew278

    (@stew278)

    Thanks … will give a try and see how it goes. ??

    Forum: Fixing WordPress
    In reply to: Tags within Page?
    Thread Starter stew278

    (@stew278)

    Yeah .. I think I understand you. Create another template (like “main.template”), and then when creating a new Page, select the created one from the pulldown menu “Page Template” under “Page Options.” (correct?)

    Couple of questions though:

    1. How do I get a template that I created to show up under that pulldown menu?
    2. Do I create a new template document by uploading a file to the server, under my themes folder?
    3. There is no other way around this currently? (as it does seem like it could generate lots of templates, if I create one for each Author) Is there a plugin that might make this a slicker process? Would there be one in development for a future release?

    Thread Starter stew278

    (@stew278)

    Great! Thanks for that bit … works great for me ??

    Thread Starter stew278

    (@stew278)

    Sorry, but I have to ask this (as I’m not that well versed in php and new to WordPress), but how would that look with the C2C plugin:

    <?php echo c2c_get_custom('Ingredients'); ?>

    I’ve seen before something about “wpautop” but have had no luck in successfully implementing it.

    Thread Starter stew278

    (@stew278)

    Is there a way to break these up, instead of listing all the custom fields (using “<?php the_meta(); ?>”)?

    I’d like to be able to control where they are placed within the page layout, for example, “Ingredients” above “Directions” and have styles applied to each one too.

    Thread Starter stew278

    (@stew278)

    Well … it’s a bit of a sloppy work-around, but I get it.

    It brings up another question though; is it possible to change the number of lines in a “value” field? Say, instead of “2” – I could make it “15” ???

Viewing 12 replies - 46 through 57 (of 57 total)