This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Deprecated command Replacement command(s) | |
| arp ip n (ip neighbor) | |
| ifconfig ip a (ip addr), ip link, ip -s (ip -stats) | |
| iptunnel ip tunnel | |
| iwconfig iw | |
| nameif ip link, ifrename | |
| netstat ss, ip route (for netstat-r), ip -s link (for netstat -i), ip maddr (for netstat-g) | |
| route ip r (ip route) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| # Register custom post types on the 'init' hook. | |
| add_action( 'init', 'my_register_post_types' ); | |
| /** | |
| * Registers post types needed by the plugin. | |
| * | |
| * @since 1.0.0 | |
| * @access public |