追記です。
http://9-sec.com/support-forum/?mingleforumaction=viewtopic&t=372
恐らくこれが参考になるかと思います。
英語もPHPも未熟なため、どなたかご指導いただけませんでしょうか。
何卒よろしくお願いいたします。
すみません、さらに追記です。
http://www.rightmove.co.uk/property-for-sale/find.html?locationIdentifier=REGION%5E1498&insId=1&sortType=6&numberOfPropertiesPerPage=10
上記を参考に、下記をfunction.phpに追加しました。
登録日、タイトル順では問題なく動作しているようです。
add_filter(‘uwpqsf_form_bottom’,’injecting_buttons’,”,4);
function injecting_buttons(){
echo ‘<select name=”order” class=”uwpqsf”>
<option value=”date-ASC”>古い順</option>
<option value=”date-DESC”>最新順</option>
<option value=”title-ASC”>商品名(昇順)</option>
<option value=”title-DESC”>商品名(降順)</option>
</select>’;
}
add_filter(‘uwpqsf_deftemp_query’, ‘custom_order_input’, ”,3);
function custom_order_input($args, $id,$getdata){
$option = explode(‘-‘,$getdata[‘order’]);//turn $getdata[‘order’] to array with delimeter ‘-‘, so that we can access the data separtely
$args[‘orderby’] = $option[0];//get the value of on the left of delimeter ‘-‘, ‘title’, ‘order’
$args[‘order’] = $option[1];//get the value of on the right of delimeter ‘-‘, ‘ASC’, ‘DESC’
return $args;
}
上記にカスタムフィールドの数値’price’での昇順・降順を追加したいのですが、どのように記述すればよろしいでしょうか。ご指導いただけますと幸いです。
何卒よろしくお願い申し上げます。
質問内容が変わってきましたので、一旦閉じます。
大変失礼いたしました。