Support » Plugin: Mark Posts » Wonderful

  • Resolved zack06007

    (@zack06007)


    Hello,
    I like your plugin it’s very interessing
    but i need to show the rank/mark in the post (in the title or in the bottom of texte) it’s possible to ad this fonction. With this the people see my mark (with the color: green, orange, red) for each article (now nothing see that exept the administrator).

    Thx

    https://wordpress.org/plugins/mark-posts/

Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Author Sven

    (@hofmannsven)

    Thank you very much for your feedback!
    You can display the markers of the current post via wp_get_post_terms() in the loop:

    <?php
    
    /*
     * List marker of a post
     */
    
    $post_markers = wp_get_post_terms( $post->ID, 'marker' );
    
    echo '<ul>';
    
    foreach ( $post_markers as $post_marker ) :
      echo '<li>';
      echo __('Marker', 'textdomain') . ': ' . $post_marker->name  . '<br />';
      echo __('Color', 'textdomain') . ': ' . $post_marker->description . '<br />';
      echo '</li>';
    endforeach;
    
    echo '</ul>';
    
    ?>

    Or show a list with all markers:

    <?php
    
    /*
     * List all markers
     */
    
    $args = array(
      'taxonomy' => 'marker'
    );
    
    $makers = get_categories( $args );
    
    echo '<ul>';
    
    foreach ( $makers as $marker ) :
      echo '<li>';
      echo __('Marker', 'textdomain') . ': ' . $marker->name  . '<br />';
      echo __('Color', 'textdomain') . ': ' . $marker->description . '<br />';
      echo '</li>';
    endforeach;
    
    echo '</ul>';
    
    ?>
    Thread Starter zack06007

    (@zack06007)

    thx for your answer, the first code is ok exept the color (near the mark (example: 7/10) i have #000000.

    I try to change it and to adapt it for my manage template (custom) and my AZ index with manual mark: http://www.bandofmovies.fr/cinechezmoi/archives/

    Thks, i begin in code (and english lol)

    Thread Starter zack06007

    (@zack06007)

    I install a wonderful foncion but the plugin “Mark post” fonctionning for Article, Page but not in WPMovieLibrary (new). Anyone possible to help me for finish my installation. Thx a lot

    Thread Starter zack06007

    (@zack06007)

    Very Sorry it’s ok i have the option
    thanks

    (no possible to edit post in this forum?)

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Wonderful’ is closed to new replies.