• Resolved susno

    (@susno)


    Please help me, i want to display linked values from field for each post.
    This function available on custom field taxonomies plugin. example:

    <p>Mood: <?php echo get_linked_meta(get_the_ID(), ‘yourfield’) ?></p>
    output:
    Current Mood: happy

    It is possible for me to doing this with gd-taxonomies-tools plugin? how i can do it?

    Thank you so much !

    https://www.ads-software.com/extend/plugins/gd-taxonomies-tools/

Viewing 10 replies - 1 through 10 (of 10 total)
  • I don’t understand what this has to do with taxonomies? Custom fields plugin and custom taxonomies in WordPress has nothing to do with one another and are not compatible.

    But, if you make a custom taxonomy called Mood (mood), and you add value happy to it for a specific post, there is similar way to display linked value just like you would do with post tags or categories using this:

    <?php
    
    echo "Mood: ".get_the_term_list(get_the_ID(), 'mood');
    
    ?>

    This will return comma separated list of links for each term for taxonomy for the given post.

    I am not sure that everyone understands, but this plugin is not actually implementing custom taxonomies. They are part of WordPress, and this plugin helps you manage it using easy to use interface without need to code everything manually. Check out WP Codex for more taxonomy functions.

    Milan

    hi

    i’m using Codex for create taxonomy functions
    now
    Not a problem when i do update WordPress core for EX: 2.9.2 –> 2.9.3?

    I doubt that 2.9.3 will be released at all. But 3.0 has many, many improvements with taxonomies and my plugin supports all of that. Once you update to WP 3.0, update taxonomies you made with GD Custom Posts And Taxonomies Tools and you are all set.

    Thread Starter susno

    (@susno)

    @gdragon: Thank you so much, that is exactly what i need! Thanks !

    Thread Starter susno

    (@susno)

    @gdragon: Do you think it is possible to make “gd-taxonomies-tools” plugins work together with TDO mini forms plugin?

    In TDO mini forms I can create “Tag” form, and it’ll automatically added to the post tags, do you think i can put custom taxonomies form too so it also can be added automatically to the post?

    here is the code on tdo mini forms for the tag:

    <fieldset>
    <legend>Tags</legend>
    <label for=”tags” >
    Tags (separate multiple tags with commas: cats, pet food, dogs):</label>

    <input type=”text” id=”tags” name=”tags” size=”60″ value=”<?php echo htmlentities($tags,ENT_QUOTES,get_bloginfo(‘charset’)); ?>” />
    </fieldset>

    thank you very much for answered GDragoN

    @susno: Again, GD Taxonomies Tools doesn’t really add anything new to WordPress, it’s a interface for managing taxonomies, everything else is part of WordPress. Meta boxes on post edit page are what you need (or some equivalent) for TDO integration, and they are all made by WordPress.

    Thread Starter susno

    (@susno)

    thanks for your explanations GDragoN ??
    by the way, the new version have dropdown options right? I already upgrade to the latest version, but there is no drop down options. please help me.

    Thanks again !!

    I don’t understand. Dropdwon checkbox is added right now to taxonomies and custom post editors. If you are looking for that for widget, it will be added in next version in a few days.

    Thread Starter susno

    (@susno)

    Yess GDragoN, I’m looking for the drop down on the widget. Right now the taxonomy output only lists, Hope you can add the drop down options soon.
    Can’t wait for that versions!!

    Thank you.

Viewing 10 replies - 1 through 10 (of 10 total)
  • The topic ‘[Plugin: GD Custom Posts And Taxonomies Tools] how to display linked values from that field for each’ is closed to new replies.