Forum Replies Created

Viewing 6 replies - 1 through 6 (of 6 total)
  • Thread Starter goldfish-looser

    (@goldfish-looser)

    the gallery was more of an example rather than my goal. but i’ve been thinking about it and i can probably achieve what i need through the use of custom taxonomies and taxonomies meta-data.
    but thanks for your help, i’m trying to explore all possible scenarios 😉

    Thread Starter goldfish-looser

    (@goldfish-looser)

    hey, thanks for the quick response 🙂

    i get what you mean, but what i’m looking for is a real connection between one image and two or more different posts, so that, for instante, i could have that same image in two different galleries, each one associated to a specific post.

    we could take this even further with the advent of custom post types where such may be indeed helpful

    Thread Starter goldfish-looser

    (@goldfish-looser)

    also, forgot to mention, while having the permalinks set up as %category%/%postname% if i go to http://localhost/wordpress/?s=lorem&paged=2 it presents me the second page for the search results just as one would expect..

    still haven’t found anything..

    Thread Starter goldfish-looser

    (@goldfish-looser)

    i’m using kubrick, the default wordpress theme as the base for my theme and i also got the same issue when using it by default..

    <?php if (have_posts()) : ?>
    
    		<h2 class="pagetitle"><?php _e('Search Results', 'kubrick'); ?></h2>
    
    		<div class="navigation">
    			<div class="alignleft"><?php next_posts_link(__('&laquo; Older Entries', 'kubrick')) ?></div>
    			<div class="alignright"><?php previous_posts_link(__('Newer Entries &raquo;', 'kubrick')) ?></div>
    		</div>
    
    		<?php while (have_posts()) : the_post(); ?>
    
    			<div <?php post_class(); ?>>
    				<h3 id="post-<?php the_ID(); ?>"><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php printf(__('Permanent Link to %s', 'kubrick'), the_title_attribute('echo=0')); ?>"><?php the_title(); ?></a></h3>
    				<small><?php the_time('l, F jS, Y') ?></small>
    
    				<p class="postmetadata"><?php the_tags(__('Tags:', 'kubrick') . ' ', ', ', '<br />'); ?> <?php printf(__('Posted in %s', 'kubrick'), get_the_category_list(', ')); ?> | <?php edit_post_link(__('Edit', 'kubrick'), '', ' | '); ?>  <?php comments_popup_link(__('No Comments »', 'kubrick'), __('1 Comment »', 'kubrick'), __('% Comments »', 'kubrick'), '', __('Comments Closed', 'kubrick') ); ?></p>
    			</div>
    
    		<?php endwhile; ?>
    
    		<div class="navigation">
    			<div class="alignleft"><?php next_posts_link(__('&laquo; Older Entries', 'kubrick')) ?></div>
    			<div class="alignright"><?php previous_posts_link(__('Newer Entries &raquo;', 'kubrick')) ?></div>
    		</div>
    
    	<?php else : ?>
    
    		<h2 class="center"><?php _e('No posts found. Try a different search?', 'kubrick'); ?></h2>
    		<?php get_search_form(); ?>
    
    	<?php endif; ?>
    Thread Starter goldfish-looser

    (@goldfish-looser)

    i had to resort to using a custom upload system.
    Still if anyone knows how to achieve this i’d be much grateful.

    thanks, once again

    Thread Starter goldfish-looser

    (@goldfish-looser)

    anyone?

Viewing 6 replies - 1 through 6 (of 6 total)