0
votes
0answers
3 views
How to add post meta to post permalink with still keeping a good performance?
the following problem - I want to completly change my post permalink structure to be like this:
www.example.com/%post_id%/%post_meta_value1%-%post_meta_value2%-....
It would even be more nice to ...
0
votes
0answers
4 views
Send php in mail 2 Contact form 7
Is it possible (and how) to include php code in the mail(2) on Contact form 7? Thanks
0
votes
1answer
10 views
Wordpress can only query up to 766
Basically, I am little unaware of my WP can only run a query up to 766 custom post of one type (the actual posts).
I have 26,000 posts that are within one custom post type, but cannot query them all ...
0
votes
0answers
5 views
Random sort for category products in Woocommerce
I would like to have the products in the archive page of a category be displayed in a random order each time a page is refreshed, instead of the default date sorting. How do I do that?
I'm not using ...
0
votes
1answer
12 views
Highlight current tag using get_tags()
I'm nearly there with this, but I need to highlight the current tag link/archive being viewed:
<ul id="blog-tags">
<?php
$tags = get_tags();
if ($tags) {
...
0
votes
1answer
12 views
Publish Post After Click On A Link
I have a frontend posting form (CF7), where user inputs (among other data of course) his email. Now I set the status to pending.
What I want is, that the user would get trough autoresponder a mail, ...
0
votes
1answer
6 views
how do I get the date in a date archive page
In archive.php, if it is a date archive, can I get the date using a function?
Consider a url like this: myfirstsite/2013/08 - I want to get the 2013/08
0
votes
0answers
13 views
Changing The Site URL in MULTISITE
How do I change the MAIN (ROOT ) Address (URL) and the Site Address (URL) in Multisite?
0
votes
1answer
11 views
how to remove user name and date in post page
Every post page shows user name and date in top of page.
Pinboard theme is used.
Wordpress is used like CMS and this info in not nessecary. Pages cannto used since pages does not allow to add tags and ...
0
votes
0answers
5 views
Calling on submenu only in a template
I have theme with a vertical menu that comes with the option of a dropdown list.
At the moment that dropdown occurs when I hover over a page that has subpages.
Things I'd like to get fixed:
When ...
0
votes
0answers
9 views
How to make permalink structure %category%/%postname%/ work for custom post type?
I'm trying to achieve the following permalink structure for a custom post type called "concept" with taxonomy "category"
http://domain/categoryname/conceptname
Note: The main problem here is I ...
0
votes
0answers
5 views
Pull Random Attachments With Pagination
I want to make a archive page that pulls in all uploaded images to the site. I am using the current script however its not paginating.
<div class="media row-fluid">
<?php
$paged = ...
-1
votes
0answers
7 views
need a wp theme that such as w3schools have subcateguris [on hold]
(i dont know english well)
I have need a wp theme that such as w3schools have subcateguris and show them (subcateguris)
in sidebar.
please please please help me!
0
votes
0answers
10 views
Recent Post Widget With Thumbnail
I'm using the below code to display recent post with thumbnail (the_post_thumbnail) in my theme. Is that possible using the below code to create a recent post widget with thumbnail ...
0
votes
0answers
9 views
wordpress step form - how to move values to next step?
I am building a simple step form (step1 -> step2 -> step3)
At the first page, I did like this.
if( isset($_POST['step1']) ) {
include_once( get_template_directory() . ...