Tagged Questions
1
vote
0answers
122 views
Should i use wp transient with w3-total-cache apc caching
Should i use in my queries wp transient like this -
<?php
if ( ! $my_paged = absint( get_query_var( 'paged' ) ) )
$my_paged = 1;
if ( ! $my_query = get_transient( "567recent_$my_paged" ) ...