Digital experiences for all disciplines
Forum Replies Created
-
-
Thanks Laranz !
Thanks Kyle !
Like this ?
Attachments:
You must be logged in to view attached files.Is it possible to place the pictograms + twitter linkedin top of the page?
Attachments:
You must be logged in to view attached files.ok, thanks
Thanks
And is it possible to create round boxes for pictures (not square)?
Yes, functionality of it scrolling to each section
It’s good, thanks Kyle !
Thank you, it works but the border is doubled. There are still a trace of the original border
Thank you kyle, it works!
How stylize the border (eg: 1px dotted)?
Perfect ! Thanks Mohammad
ok, thanks !
ok, thanks !
it works very well but titrede page and sidebar are not displayed …
Is something missing in the code of my page?
<?php /* Template Name: Sitemap */ ?> <?php get_header(); ?> <?php /* Liste des pages */ ?> <h2>Pages</h2> <ul> <?php wp_list_pages("title_li=" ); ?> </ul> <?php /* Flux RSS */ ?> <h2>Flux RSS</h2> <ul> <li><a title="Flux articles" href="feed:<?php bloginfo('rss2_url'); ?>">Flux RSS principal</a></li> <li><a title="Flux commentaires" href="feed:<?php bloginfo('comments_rss2_url'); ?>">Flux RSS des commentaires</a></li> </ul> <?php /* Liste des catégories */ ?> <h2>Catégories</h2> <ul> <?php wp_list_categories('sort_column=name&optioncount=1&hierarchical=0&feed=RSS&title_li='); ?> </ul> <?php /* Liste des articles */ ?> <h2>Articles</h2> <ul> <?php $archive_query = new WP_Query('showposts=1000'); while ($archive_query->have_posts()) : $archive_query->the_post(); ?> <li><a href="<?php the_permalink() ?>" rel="bookmark" title="Lien à <?php the_title(); ?>"><?php the_title(); ?></a>(<?php comments_number('0', '1', '%'); ?>)</li> <?php endwhile; ?> </ul> <?php /* Liste des éléments d'un custom post type */ ?> <h2>Custom Post Type</h2> <ul> <?php $archive_query = new WP_Query('showposts=1000&post_type=custom_post_type'); while ($archive_query->have_posts()) : $archive_query->the_post(); ?> <li><a href="<?php the_permalink() ?>" rel="bookmark" title="Lien à <?php the_title(); ?>"><?php the_title(); ?></a></li> <?php endwhile; ?> </ul> </div> <?php get_footer(); ?>
-