Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums Back End Functioning WP Tag Cloud?

  • This topic is empty.
Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #32160
    smithaa99
    Member

    I’m having trouble getting the WordPress WP Tag Cloud to work. I tried a couple of the widget plugins, but I can’t figure how to get them to show up on this page to get the shortcode.

    Can anyone look over my PHP file and see what’s wrong?

    The page I want it on is here, in the sidebar under the search box:
    http://www.parkarvidsonacupuncture.com/wordpress/nancy7/

    PHP file is here:
    http://www.parkarvidsonacupuncture.com/wordpress/wp-content/themes/ParkArvidson%20Wordpress/nancy_page.php

    Thanks!
    Adam

    #53351
    ccc630
    Member

    Adam,

    Could you please paste the contents of the nancy_page.php file here? Thanks.

    #53294
    davidlab.be
    Participant

    while we are waiting for the code…I have to point something out that I noticed when looking at the site. The links are rather strange the way you have them. The way they are now is that the link only works if you hover over the text itself and not the link container itself. You have a big button to indicate to the user that it is a link and it is clickable….but you have the text clickable. Simply add display:block; to the (#sidebar a) selector in your css and you will see it functions much better.

    #53176
    smithaa99
    Member

    Thanks springlab! Nice realization.

    #53145
    smithaa99
    Member
    
    /*
    Template Name: BLOG | Nancy Park Acupuncture
    */

    get_header(); ?>









    Archives






    wp_tag_cloud( array( 'taxonomy' => 'category' ) );
    ?>





      global $post;
      $myposts = get_posts('numberposts=10&category=Nancy&order=DESC');
      foreach($myposts as $post) :
      ?>
    • ">











    if (have_posts()) : while (have_posts()) : the_post();
    ?>

    the_permalink();
    ?>"> the_title();
    ?>



    the_content('

    Read more »

    ');
    ?>
    wp_link_pages(array(
    'before' => '

    Pages: ',
    'after' => '

    ',
    'next_or_number' => 'number'
    ));
    ?>


    endwhile; endif;
    ?>









    #52806
    smithaa99
    Member

    Can anybody answer this?

Viewing 6 posts - 1 through 6 (of 6 total)
  • The forum ‘Back End’ is closed to new topics and replies.