jampacked.kreativ
Forum Replies Created
-
Forum: Plugins
In reply to: [W3 Total Cache] Fatal error: Call to undefined function w3tc_button_link()rg1 wrkd 4 me.
it doesnt work at all.
You know, and please try to be more illustrative there. you dint describe as it should be and any one could destroy their website if following you. I appreciate you have devoted time but it dint work for me and moreover I was about to ruin my website. See, this is what i wanted and manually imp[orting and exporting did work for me not your method.
site is : kamilla(reid.com – remove brackets.
subsite was joye(nro)ute.kamilla(reid.com – remove brackets.i did it manually.
Can you help me still? i did but for the people who will search ame topic must be served…
Hey Ipstenu.
I tried everything. changing current_id of website and blog_id – and in my case specially I dint see any change using this. I tried changing Sites you told by going to edit sites – I changed that and it was done. I became happy. Then I checked my websites. Parent was still there, child was still there as it is? then what I have done following you???
I then tried checking the admin panel and wtf I lost access to it. I spent an hour tweaking everything nothing then I had to go in wp-config and then i changed ( ‘DOMAIN_CURRENT_SITE’, ) to the child one then I got access to sites. wheewwww!
I dont want to change posts and pages and menus and plugins and all.
See, what I want is :
- https://www.mainwebsite.com to be subsite.mainsite.com or delete
- subsite.mainsite.com to be mainsite.com.
Remember, I want posts to be moved along liek whatever the posts were in subsite – should be carried with main when sub becomes main.
Hi Mike.
thanks for replying fast. i want (first or any) child to be the main.
I wat this because I dont want all that widgets and settings and plugins to reenable and reedit.Forum: Fixing WordPress
In reply to: call a specific category post title into a page.use
<?php
//Query 5 recent published post in descending order
$args = array( ‘numberposts’ => ‘5’, ‘order’ => ‘DESC’,’post_status’ => ‘publish’ );
$recent_posts = wp_get_recent_posts( $args );
//Now lets do something with these posts
foreach( $recent_posts as $recent )
{
echo ‘Post ID: ‘.$recent[“ID”];
echo ‘Post URL: ‘.get_permalink($recent[“ID”]);
echo ‘Post Title: ‘.$recent[“post_title”];
//Do whatever else you please with this WordPress post
}
?>or here : https://www.tipsandtricks-hq.com/query-or-show-a-specific-post-in-wordpress-php-code-example-44