because the_title()
expects a string for the $before
and $after
args, you need to use the string version of the permalink, in a string concatenation;
<?php the_title('<h2 class="wow"><a href="'.get_permalink().'">', '</a></h2>'); ?>
you also had a missing >
.
https://developer.wordpress.org/reference/functions/get_permalink/
Related Posts:
- Get the blog page URL set in Options
- How to set permalink structure via functions.php
- Get 10 posts from a WP_Query. If less than 10, get the remainder from elsewhere
- Different ways to display title
- How Do I Programmatically Force Custom Permalinks with My Theme?
- Why doesn’t /2013/01/ properly return January’s archives in archive.php?
- Strategy to get post meta for use outside the loop
- Grab the first paragraph of each post
- Single Page WordPress Theme – Using page templates
- A two column loop with one lead post
- Change loop order via form or link (jquery, not URL)
- First post of each category
- Is there any need to use both wp_reset_postdata and wp_reset_query together?
- query posts in wordpress
- Getting Permalink within the loop
- the_content() in single-{post-type}.php problem
- Why does this loop only work on the homepage?
- Setting hero/splash section as a blog post
- posts_nav_link(); not showing up on static pages
- How to retrieve an image from a post and display it before excerpt of a post? [duplicate]
- Finding Page Template and Displaying Content
- How WordPress converts URL to $query_string
- Why is the first query affecting the second query, even after wp_reset_query() and wp_reset_postdata(), but not on the second page?
- get_query_var() and permalinks
- Some doubts about how to show posts in a custom theme?
- Force index.php have_posts() loop to exit if no sticky posts found
- WordPress custom post type permalink: website.com/post-name/post-id
- show a post from a specific post format
- paged > max_num_pages won’t throw 404
- Displaying recent post excerpts on static front page
- Limit Loop to 5 Posts?
- How to show user online status on their posts?
- Custom get_the_excerpt() only works on first post
- Echo all category names, apart from one
- Filter categories used with Custom Structure Permalink
- How to make permalinks update from code?
- Default Permalink Type to Postname
- How to set a page as homepage in stead of the newspages?
- how to get the post attachement image in full size?
- Get the amount of posts on a given page
- How to list articles by year based on url?
- wordpress 404 not found after rewrtie the author link
- Issue On Displaying Pages with Post Name Permalink
- Issue on Getting Custom post type Thumbnail’s URL
- Change image size depending on page
- WordPress page/blog incorporated into static website
- How can I prevent posts with no title showing up in my query?
- How can I use the WordPress Loop and Pagination in multiple instances but different scenarios throughout my site?
- Previous and Next links not populating, have I missed something?
- Twenty Seventeen Pages Loop
- How does the loop know which post to view?
- Only the latest post shows up on post page?
- Retrieve WordPress’ the_content() with jQuery
- Exclude subcategory from wp_query
- Style first 3 posts differently with WP_Query [duplicate]
- WP_Query not getting all posts, just tagged posts
- How to remove permalinks links presents in each page of my site?
- first excerpt fine, subsequent post excerpts shift to the right instead of displaying vertically [closed]
- Pagination and multiple loops
- How can I sort my loop based on meta data, using a form?
- List categories of a post hierarchically?
- Exclude parent categories from the_category() within the loop
- If I remove Category base from my URLs, how difficult will rollback be?
- What are the permalinks options for “Category” base and removing it?
- get_the_terms() returning wrong results inside of loop
- How do I open a post in a custom page in wordpress?
- Add class every 4 post like , class_1, class_2, class_3, class_4 and class_1, class_2, class_3, class_4
- Does single webpage do not need navigation to create a slug in permalink?
- How do I make my terms for each product display via foreach loop? (woocommerce)
- WordPress Insert ads after every 5th post
- Getting post URL within custom content template
- WordPress theme files Organization
- Infinite loop when nesting have_posts()
- Local variable name in setup_postdata()
- Loop is breaking my theme. How can I fix?
- control posts order by select option
- Problem with Displaying Custom Theme Page’s Content
- Why content is not adding for each blog post
- Best way to allow for extended use of WordPress functions inside single.php
- Conditional loop based on current page
- Loop through all posts, show attachment if there
- Suppress the_content filter in a nested loop
- Simple loop with shortcode rendering problem
- How get the 10 most viewed pages (not post)
- Mamp pro permalink issues. Pages keep reverting to index.php
- How to close open divs in post loop
- The normal loop with different styles doesn’t work in search.php
- issue displaying variations in custom template using WPeC 3.8.9.2
- Not Found when using activity stream as front page with BuddyPress
- Why does the first loop take arguments from the second loop?
- have_posts() return false on single post
- How to defeat “Blog pages show at most __ posts” setting in the loop?
- Display Page featured Image as well as Posts featured Image
- WordPress Loop with Custom Post Type for Bootstrap Accordion [closed]
- Why am I getting posts back when I shouldnt
- Permalinks problem with custom theme
- Is there any reason that other theme elements (such as nav menus) shouldn’t be within the loop?
- Permalink Setting Changes From Post Name to Default After Changing The Page Name
- Configuring static page with add_rewrite_rule gives 404 after navigating to Permalinks admin panel
- Meaning of “if ( is_home() && ! is_front_page() )” snippet?