[DiscordArchive] Friends, which tool do you use to open .db2 files?
[DiscordArchive] Friends, which tool do you use to open .db2 files?
Archived author: Necropresto • Posted: 2023-01-04T15:18:43.213000+00:00
Original source
Friends, which tool do you use to open .db2 files?
Archived author: Necropresto • Posted: 2023-01-04T15:18:59.762000+00:00
Original source
WDBX Editor aren't working for recent versions
Archived author: MaxtorCoder • Posted: 2023-01-04T15:20:34.140000+00:00
Original source
https://wow.tools/dbc
https://wago.tools/db2
[Embed: WoW.tools | Database browser]
Web database/DBC browser for World of Warcraft
https://wow.tools/dbc
[Embed: Wago Tools]
https://wago.tools/db2
Archived author: blacknightt • Posted: 2023-01-04T15:23:14.426000+00:00
Original source
```
function wpb_rand_posts() {
$args = array(
'post_type' => 'post',
'orderby' => 'rand',
'posts_per_page' => 5,
);
$the_query = new WP_Query( $args );
if ( $the_query->have_posts() ) {
$string .= '<ul>';
while ( $the_query->have_posts() ) {
$the_query->the_post();
$string .= '<li><a href="'. get_permalink() .'">'. get_the_title() .'</a></li>';
}
$string .= '</ul>';
/* Restore original Post Data */
wp_reset_postdata();
} else {
$string .= 'no posts found';
}
return $string;
}
add_shortcode('wpb-random-posts','wpb_rand_posts');
add_filter('widget_text', 'do_shortcode');
```
Archived author: blacknightt • Posted: 2023-01-04T15:23:27.692000+00:00
Original source
I want to give this code the ability to categorize so that, for example, the dungeon category is only displayed
Archived author: Guybrush • Posted: 2023-01-04T15:24:34.952000+00:00
Original source
Resisting the extremely strong urge to give you a lmgtfy link
Archived author: Guybrush • Posted: 2023-01-04T15:25:02.203000+00:00
Original source
your `$args` array can include a `cat` option
Archived author: Guybrush • Posted: 2023-01-04T15:25:24.115000+00:00
Original source
where `'cat' => $cat_id`
Archived author: Guybrush • Posted: 2023-01-04T15:25:37.027000+00:00
Original source
should give you the filter you're looking for
Archived author: blacknightt • Posted: 2023-01-04T15:26:00.131000+00:00
Original source
I got this code from somewhere
If you can correct me, because I don't know php at all