Posts by Guilherme • 31 points
4 posts
-
0
votes1
answer100
viewsA: Error 404 wordpress pagination
I finally managed to solve this problem. Basically what I did was remove all the logic of the search that was in the file search.php and put in the file functions.php, for that I used the…
-
0
votes1
answer100
viewsQ: Error 404 wordpress pagination
I developed a son theme based on Spacious, the problem is that when doing a search is returned that there are for example 20 results, on the first page I preview the first 10 results, however when…
-
0
votes2
answers147
viewsA: Summary of Wordpress Posts
To solve this problem I did so: I created the following function in the functions.php file function cropText($texto, $limite){ if (strlen($texto) <= $limite) echo $texto; echo…
-
3
votes2
answers147
viewsQ: Summary of Wordpress Posts
I need the summary size of the posts in my Frontpage to be different from the summary size of the page where all posts are displayed(home.php). In my file functions.php I put the following code:…