Advertisement:

Author Topic: How to limit the number of items showing ???  (Read 273 times)

d3sign3r

  • Newbie
  • *
  • Posts: 43
How to limit the number of items showing ???
« on: January 29, 2018, 01:49:42 pm »
Hi, i m using this code to display the items of a specific user.
Code: [Select]
if( osc_count_custom_items() == 0) { ?>
<div class="empty">NO ITEMS </div>
<?php } else { ?>
//MY CODE HERE
bla bla bla

This way i can display the items that this user has posted on a custom page i built.
My problem is that now it displays all the items that this user has posted. How can i limit the number of items showing lets say to 3?

I tried to use this code...
Code: [Select]
<?php if(osc_count_custom_items() >=) break; ?>
but doesnt work :( Any solution ?