We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I have decimal number in my title like:
this product size 0.5 or this product size 0,5
this product size 0.5
this product size 0,5
I need to create slug url and add to database using url_title function:
url_title
url_title('this product size 0.5') but in action url_title remove . or , from url and output is:
url_title('this product size 0.5')
.
,
this product size 05
how do can I keep . or , in url when I work with url_title function?!
The text was updated successfully, but these errors were encountered:
There is no option in the url_title() function that can handle this.
url_title()
Please ask support questions in the Forum.
Sorry, something went wrong.
No branches or pull requests
I have decimal number in my title like:
this product size 0.5
orthis product size 0,5
I need to create slug url and add to database using
url_title
function:url_title('this product size 0.5')
but in actionurl_title
remove.
or,
from url and output is:this product size 05
how do can I keep
.
or,
in url when I work withurl_title
function?!The text was updated successfully, but these errors were encountered: