preskoo
Forum Replies Created
Viewing 6 replies - 1 through 6 (of 6 total)
-
Hello.
I would also like to add the contact form in my page, but not using the shortcode. I want to implement it in the index.php page, but the strings above doesn’t seem to work. Any other suggestions?
Thank you!
Regards.EDIT: It works now, sorry for the post!
Forum: Fixing WordPress
In reply to: Links in pagesYes, this worked. Thank you so much.
Forum: Fixing WordPress
In reply to: Links in pagesThanks for the response.
When I use
get_stylesheet_directory_uri()or evenget_template_directory_uri()it links to the theme folder and not the php page.Forum: Fixing WordPress
In reply to: Post lengthI got it.
I saw in the support forums @mtpultz posted a snippet that actually works.
Here it is:<?php // The Query $the_query = new WP_Query( 'page_id=152' ); // The Loop global $more; while ( $the_query->have_posts() ) : $the_query->the_post(); $more = 0; the_content("Read more..."); endwhile; // Reset Post Data wp_reset_postdata(); ?>Forum: Fixing WordPress
In reply to: Post lengthAnyone any ideas?
Forum: Fixing WordPress
In reply to: Post lengthThanks for the response, but it doesn’t work.
Viewing 6 replies - 1 through 6 (of 6 total)