Tagged Questions
0
votes
0answers
63 views
How to show Title in woocommerce product category page?
I am here to ask a problem i am facing with my woocommerce plugin product category page, where i am not able to show the TITLE of each product using Yoast SEO plugin. When you checked in source there ...
0
votes
1answer
88 views
How to customize a title by passing query string?
I have a profile page, it is a template. Every time when I click one of a doctor, the profile page will show the specific doctor info by passing a query string. Something like
profile?doctorName=abc.
...
2
votes
4answers
125 views
What is the proper filter to add html to a post / page title?
I want to use Myanmar Unicode text on my blog. Unfortunatly, pseudo-Unicode Myanmar fonts are common. So, I am writing a plugin that will suround all Myanmar phrases with HTML span tags, and use css ...
0
votes
1answer
67 views
how can I list recent posts' excerpts
I am using this directly from the codex to list 3 recent articles titles.
<ul>
<?php
$args = array( 'numberposts' => '3');
$recent_posts = wp_get_recent_posts( $args );
foreach( ...
1
vote
0answers
17 views
how to add text to posts from tags
How can I add custom generated text to posts using text from tags?
Something like:
[Post Title] + custom text + tags + custom text ....
Or is there a plugin which does this ?
1
vote
2answers
563 views
Change page title from plugin
Is possible to change page title on the fly from plugin?
I've try global $post, but seem like plugin runs after.
Any Ideas?
Edit:
Im writting some pages on the fly, based on same page / post, so ...
2
votes
1answer
105 views
How to add terms to a post depending on its title?
I want to add all posts with keyword "Dog Training" in the post title to a specific category.
Reason: If you enter something into WordPress search it's not an exact match. Previous WordPress search ...
0
votes
1answer
117 views
Customizing Titles on the Fly with Code
I hope this question is easy. I want to customize my theme so that the post titles are created on the fly with code. For example, I might have a post where a price changes on the page 4 times a week, ...